:root {
  --blue: #202b6f;
  --blue-deep: #151d50;
  --coral: #bc5a49;
  --coral-deep: #8f3f34;
  --peach: #f2ddd4;
  --cream: #fbf4ec;
  --paper: #fffdf9;
  --mist: #f2f4f8;
  --ink: #1e2638;
  --muted: #5b6372;
  --line: #d9dbe2;
  --white: #ffffff;
  --shadow: 0 24px 64px rgba(27, 34, 71, 0.14);
  --shell: min(1180px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
figure,
fieldset,
dl,
dd,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--blue-deep);
  font-weight: 690;
  letter-spacing: -0.038em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 700px;
  font-size: clamp(2.8rem, 4.2vw, 3.45rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p,
li,
dd {
  overflow-wrap: anywhere;
}

.header-shell,
.hero-shell,
.section-shell,
.footer-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 8px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #e18468;
  outline-offset: 4px;
}

.operator-bar {
  padding: 7px 14px;
  color: #f2f3ff;
  background: var(--blue-deep);
  font-size: 0.78rem;
  letter-spacing: 0.018em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 249, 0.97);
  border-bottom: 1px solid rgba(32, 43, 111, 0.11);
  backdrop-filter: blur(12px);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 82px;
}

.domain-mark {
  color: var(--blue-deep);
  font-size: 1.3rem;
  font-weight: 580;
  letter-spacing: -0.045em;
  text-decoration: none;
  white-space: nowrap;
}

.domain-mark strong {
  color: var(--coral-deep);
  font-weight: 790;
}

.main-nav {
  display: flex;
  gap: clamp(15px, 2vw, 29px);
  align-items: center;
  justify-content: flex-end;
  font-size: 0.88rem;
  font-weight: 650;
}

.main-nav a {
  color: #38415b;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--coral-deep);
}

.main-nav .nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
}

.awz-logo {
  display: block;
  width: 110px;
  flex: none;
}

.awz-logo img {
  width: 100%;
  height: auto;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 720;
  cursor: pointer;
}

.menu-lines {
  display: grid;
  gap: 3px;
  width: 18px;
}

.menu-lines i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-lines i:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines i:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-lines i:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 84px) 0 clamp(66px, 8vw, 108px);
  background:
    linear-gradient(110deg, rgba(242, 221, 212, 0.74), transparent 43%),
    linear-gradient(145deg, #fffaf4 0%, #f7f3ef 56%, #eef1f7 100%);
}

.hero::before {
  position: absolute;
  top: -130px;
  right: -90px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(188, 90, 73, 0.23);
  border-radius: 50%;
  content: "";
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding-left: 24px;
  border-left: 4px solid var(--coral);
}

.eyebrow,
.section-kicker {
  color: var(--coral-deep);
  font-size: 0.73rem;
  font-weight: 810;
  letter-spacing: 0.125em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 20px;
}

.hero-lead {
  max-width: 610px;
  margin-top: 26px;
  color: #464e60;
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero-actions {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 9px;
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 13px 28px rgba(32, 43, 111, 0.22);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-secondary {
  color: var(--blue-deep);
  background: var(--white);
  border-color: rgba(32, 43, 111, 0.28);
}

.button-secondary:hover {
  background: var(--mist);
}

.secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 18px;
}

.secondary-actions a,
.text-link {
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: #e7e0d9;
  border-radius: 12px 42px 12px 12px;
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  color: var(--white);
  background: rgba(18, 24, 57, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero-image {
  grid-column: 2;
  grid-row: 1 / 3;
  aspect-ratio: 3 / 2;
  transform: rotate(0.45deg);
}

.hero-image img {
  object-position: 51% center;
}

.personality-section,
.support-section,
.real-estate-section,
.trust-section,
.contact-section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.personality-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 38px clamp(50px, 8vw, 118px);
  align-items: start;
}

.section-heading::before {
  display: block;
  width: 72px;
  height: 5px;
  margin-bottom: 25px;
  background: var(--coral);
  content: "";
}

.section-heading .section-kicker,
.work-copy .section-kicker,
.support-copy .section-kicker,
.trust-copy .section-kicker,
.form-column > .section-kicker,
.personal-contact .section-kicker {
  margin-bottom: 14px;
}

.personality-copy {
  display: grid;
  gap: 22px;
  padding-top: 31px;
  color: #474f5f;
  font-size: 1.05rem;
}

.strength-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strength-line article {
  padding: 29px 25px 32px;
  border-right: 1px solid var(--line);
}

.strength-line article:last-child {
  border-right: 0;
}

.strength-line article > span,
.path-number {
  display: block;
  margin-bottom: 21px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.strength-line h3 {
  margin-bottom: 11px;
  font-size: 1.28rem;
}

.strength-line p {
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.58;
}

.work-section {
  padding: clamp(72px, 8.5vw, 118px) 0;
  background: var(--cream);
}

.work-layout,
.support-layout {
  display: grid;
  grid-template-columns: minmax(370px, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: center;
}

.work-image,
.support-image {
  aspect-ratio: 3 / 2;
}

.work-image img {
  object-position: center center;
}

.work-copy > p:not(.section-kicker),
.support-copy > p:not(.section-kicker),
.trust-copy > p:not(.section-kicker) {
  margin-top: 24px;
  color: #4c5463;
}

.activity-list {
  display: grid;
  margin-top: 31px;
  border-top: 1px solid #d9ccc3;
}

.activity-list > div {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #d9ccc3;
}

.activity-list dt {
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 760;
}

.activity-list dd {
  color: var(--muted);
  font-size: 0.9rem;
}

.support-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.95fr);
}

.support-image img {
  object-position: 52% center;
}

.support-points {
  display: grid;
  padding: 0;
  margin-top: 31px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.support-points li {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.support-points strong {
  color: var(--blue-deep);
  font-size: 0.9rem;
}

.support-points span {
  color: var(--muted);
  font-size: 0.9rem;
}

.success-band {
  padding: clamp(58px, 7vw, 82px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(188, 90, 73, 0.92), rgba(143, 63, 52, 0.94)),
    var(--coral-deep);
}

.success-inner {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(260px, 0.75fr) minmax(300px, 1fr);
  gap: clamp(25px, 4vw, 60px);
  align-items: center;
}

.success-inner .section-kicker,
.success-inner h2,
.light-link {
  color: var(--white);
}

.success-inner h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
}

.success-inner > p:not(.section-kicker) {
  font-size: 0.96rem;
}

.success-inner .text-link {
  grid-column: 3;
  justify-self: start;
  margin-top: -20px;
}

.real-estate-section {
  background: var(--mist);
}

.narrow-heading {
  max-width: 740px;
}

.estate-paths {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 5vw, 76px);
  margin-top: clamp(48px, 7vw, 82px);
}

.estate-paths article {
  padding: 30px 0 5px;
  border-top: 3px solid var(--blue);
}

.estate-paths article:last-child {
  border-top-color: #9ea4b3;
}

.estate-paths h3 {
  margin-bottom: 16px;
}

.estate-paths p:not(.path-number) {
  max-width: 620px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 23px;
}

.career-link-section {
  padding: clamp(58px, 7vw, 86px) 0;
  background: var(--peach);
}

.career-link-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.career-link-inner h2 {
  max-width: 730px;
  margin: 12px 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.career-link-inner p:not(.section-kicker) {
  max-width: 760px;
  color: #56505a;
}

.trust-section {
  color: var(--white);
  background: var(--blue-deep);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 7vw, 98px);
  align-items: end;
}

.trust-copy h2,
.trust-copy .section-kicker {
  color: var(--white);
}

.trust-copy > p:not(.section-kicker) {
  color: #cfd3e8;
}

.trust-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-values > div {
  padding: 26px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-values > div:last-child {
  border-right: 0;
}

.trust-values dt {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 730;
  letter-spacing: -0.04em;
  line-height: 1;
}

.trust-values dd {
  margin-top: 10px;
  color: #cfd3e8;
  font-size: 0.79rem;
  line-height: 1.4;
}

.contact-section {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
}

.form-column > h2 {
  margin-bottom: 35px;
}

form {
  display: grid;
  gap: 24px;
}

fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

legend,
.field label {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 730;
}

.intent-options {
  display: grid;
  grid-template-columns: 1.36fr 0.85fr 0.78fr;
  gap: 10px;
}

.intent-options label {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 11px 13px;
  color: #495164;
  background: var(--white);
  border: 1px solid #ccd0da;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 680;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
}

.intent-options label[data-selected="true"] {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(32, 43, 111, 0.18);
}

.intent-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.intent-options label:focus-within {
  outline: 3px solid #e18468;
  outline-offset: 3px;
}

input,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c6c9d2;
  border-radius: 8px;
  font-size: 1rem;
}

input {
  min-height: 52px;
  padding: 10px 14px;
}

textarea {
  min-height: 180px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}

input:hover,
textarea:hover {
  border-color: #9197a6;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(32, 43, 111, 0.12);
  outline: none;
}

.personal-details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #d5cec5;
  border-radius: 9px;
}

.personal-details summary {
  padding: 16px 18px;
  color: var(--blue-deep);
  font-size: 0.91rem;
  font-weight: 720;
  cursor: pointer;
}

.personal-details[open] summary {
  border-bottom: 1px solid #d5cec5;
}

.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 21px 18px 23px;
}

.field-wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  color: #4c5464;
  font-size: 0.85rem;
  line-height: 1.55;
}

.consent-row input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.consent-row a {
  color: var(--blue-deep);
  font-weight: 680;
}

.privacy-note {
  padding: 13px 16px;
  color: #3d4557;
  background: #e5e8f2;
  border-left: 4px solid var(--blue);
  font-size: 0.88rem;
}

.submit-button {
  justify-self: start;
  border: 0;
}

.form-status {
  min-height: 1.6em;
  color: #7d2e27;
  font-size: 0.88rem;
  font-weight: 650;
}

.personal-contact {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid #cbc4ba;
}

.personal-contact h2 {
  max-width: 590px;
  font-size: clamp(1.7rem, 3vw, 2.42rem);
}

.contact-name {
  margin-top: 21px;
  color: #3d4555;
  font-weight: 730;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 38px;
  margin-top: 18px;
}

.contact-links a {
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 760;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(32, 43, 111, 0.36);
  text-underline-offset: 4px;
}

.contact-links span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding: 32px 0;
  color: #d8dbee;
  background: #111735;
  font-size: 0.8rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-domain {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 760;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
}

.site-footer a {
  color: #eef0ff;
  text-underline-offset: 3px;
}

.site-footer p {
  color: #aeb4d0;
  text-align: right;
}

@media (max-width: 1080px) {
  .header-shell {
    gap: 18px;
  }

  .main-nav {
    gap: 15px;
    font-size: 0.82rem;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
    column-gap: 43px;
  }
}

@media (max-width: 900px) {
  .header-shell {
    grid-template-columns: 1fr auto auto;
    min-height: 74px;
  }

  .menu-button {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 0 13px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(21, 29, 80, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 11px 24px;
  }

  .main-nav .nav-cta {
    margin: 6px 24px 0;
    padding: 11px 14px;
    text-align: center;
  }

  .awz-logo {
    width: 90px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 700px);
  }

  html {
    scroll-padding-top: 100px;
  }

  .hero {
    padding-top: 43px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero-copy,
  .hero-image,
  .hero-actions {
    grid-column: 1;
  }

  .hero-copy {
    grid-row: 1;
  }

  .hero-image {
    grid-row: 2;
    margin-top: 32px;
    transform: none;
  }

  .hero-actions {
    grid-row: 3;
    margin-top: 25px;
  }

  .personality-layout,
  .work-layout,
  .support-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .personality-copy {
    padding-top: 0;
  }

  .strength-line {
    grid-template-columns: 1fr 1fr;
  }

  .strength-line article:nth-child(2) {
    border-right: 0;
  }

  .strength-line article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .support-image {
    grid-row: 1;
  }

  .success-inner {
    grid-template-columns: 0.4fr 1fr;
  }

  .success-inner > p:not(.section-kicker),
  .success-inner .text-link {
    grid-column: 2;
  }

  .success-inner .text-link {
    margin-top: -16px;
  }

  .estate-paths {
    grid-template-columns: 1fr;
  }

  .career-link-inner {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .trust-values {
    max-width: 680px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: clamp(2.02rem, 10vw, 2.48rem);
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.15rem);
  }

  .operator-bar {
    font-size: 0.68rem;
  }

  .header-shell {
    gap: 10px;
    min-height: 68px;
  }

  .domain-mark {
    font-size: 1.03rem;
  }

  .menu-button {
    padding: 8px 9px;
  }

  .awz-logo {
    width: 73px;
  }

  .hero {
    padding: 35px 0 62px;
  }

  .hero-copy {
    padding-left: 16px;
    border-left-width: 3px;
  }

  .hero-lead {
    margin-top: 21px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-image {
    margin-top: 24px;
    border-radius: 10px 28px 10px 10px;
  }

  .hero-actions .button-primary {
    width: 100%;
  }

  .secondary-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .secondary-actions a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #c8ccd7;
    border-radius: 7px;
    font-size: 0.78rem;
    text-align: center;
    text-decoration: none;
  }

  .personality-section,
  .support-section,
  .real-estate-section,
  .trust-section,
  .contact-section,
  .work-section {
    padding: 67px 0;
  }

  .strength-line {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }

  .strength-line article {
    padding: 23px 4px 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strength-line article:last-child {
    border-bottom: 0;
  }

  .activity-list > div,
  .support-points li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .success-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .success-inner > p:not(.section-kicker),
  .success-inner .text-link {
    grid-column: 1;
  }

  .success-inner .text-link {
    margin-top: 0;
  }

  .career-link-inner .button {
    width: 100%;
  }

  .trust-values {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .trust-values > div {
    display: grid;
    grid-template-columns: 135px 1fr;
    align-items: baseline;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .trust-values dd {
    margin-top: 0;
  }

  .intent-options {
    grid-template-columns: 1fr;
  }

  .intent-options label {
    justify-content: flex-start;
    min-height: 50px;
    text-align: left;
  }

  .personal-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .submit-button {
    width: 100%;
  }

  .contact-links {
    display: grid;
    gap: 15px;
  }
}

@media (max-width: 430px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  .image-frame figcaption {
    right: 8px;
    bottom: 8px;
    padding: 4px 7px;
    font-size: 0.61rem;
  }
}

@media (max-width: 350px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .domain-mark {
    font-size: 0.92rem;
  }

  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .awz-logo {
    width: 63px;
  }

  .hero {
    padding-top: 29px;
  }

  .hero-image {
    aspect-ratio: 16 / 9;
    margin-top: 19px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .secondary-actions {
    grid-template-columns: 1fr;
  }

  .trust-values > div {
    grid-template-columns: 118px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
