:root {
  --paper: #f8f5ef;
  --surface: #f7f5f1;
  --ink: #171414;
  --secondary: #57514f;
  --mist: #e2e9ed;
  --midnight: #171b26;
  --dusk: #e6e0eb;
  --dawn: #f4e2d6;
  --blue: #4a587e;
  --serif: ui-serif, "Iowan Old Style", "New York", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid #6d5d82;
  outline-offset: 4px;
  border-radius: 6px;
}

img {
  max-width: 100%;
}

.aura-site {
  overflow: hidden;
  background: var(--mist);
}

.aura-nav {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(100% - 48px, 1240px);
  min-height: 92px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--surface);
}

.aura-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.aura-brand-link img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
}

.aura-nav-links,
.aura-footer nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.82rem;
  font-weight: 600;
}

.aura-nav-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.aura-hero {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  padding: 150px max(24px, calc((100vw - 1240px) / 2)) 96px;
  background: var(--midnight);
  color: var(--surface);
}

.aura-hero-copy {
  max-width: 720px;
}

.aura-kicker {
  margin: 0 0 30px;
  color: #aeb9d8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aura-kicker-dark {
  color: var(--blue);
}

.aura-hero h1,
.aura-section-heading h2,
.aura-quote-copy h2,
.aura-privacy-copy h2,
.aura-closing h2 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.aura-hero h1 {
  max-width: 700px;
  font-size: clamp(3.7rem, 6.6vw, 6.7rem);
}

.hero-description {
  max-width: 570px;
  margin: 38px 0 0;
  color: #b8becd;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.58;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.aura-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.aura-button-light {
  background: var(--surface);
  color: var(--midnight);
}

.aura-button-dark {
  margin-top: 34px;
  background: #2c211e;
  color: var(--surface);
}

.aura-inline-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: #dce2f0;
  font-size: 0.88rem;
  font-weight: 650;
}

.aura-hero-visual {
  position: relative;
  width: min(100%, 390px);
  justify-self: end;
}

.aura-screen-frame {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 48px;
  background: #111621;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.aura-screen-frame img,
.aura-onboarding-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.aura-hero-stamp {
  position: absolute;
  z-index: 3;
  right: -30px;
  bottom: 72px;
  display: grid;
  min-width: 150px;
  padding: 15px 18px;
  border: 1px solid rgba(23, 27, 38, 0.18);
  background: var(--mist);
  color: var(--blue);
}

.aura-hero-stamp span {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.aura-hero-stamp strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.aura-onboarding {
  padding: 132px max(24px, calc((100vw - 1240px) / 2)) 150px;
  background: var(--surface);
}

.aura-section-heading {
  max-width: 820px;
  margin-bottom: 82px;
}

.aura-section-heading > p:last-child,
.aura-quote-copy > p:last-child,
.aura-privacy-copy > p:not(.aura-kicker) {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--secondary);
  font-size: 1.08rem;
  line-height: 1.65;
}

.aura-screen-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 3.4vw, 46px);
}

.aura-onboarding-screen {
  margin: 0;
}

.aura-onboarding-screen img {
  border: 1px solid rgba(23, 20, 20, 0.16);
  border-radius: clamp(28px, 3.4vw, 48px);
  background: var(--midnight);
  box-shadow: 0 22px 46px rgba(23, 20, 20, 0.1);
}

.aura-onboarding-screen figcaption {
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.screen-2 { margin-top: 84px; }
.screen-3 { margin-top: 168px; }

.aura-quote-experience {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(56px, 8vw, 132px);
  padding: 120px max(24px, calc((100vw - 1240px) / 2));
  background: var(--mist);
}

.aura-quote-copy {
  max-width: 540px;
}

.aura-feed-card {
  position: relative;
  min-height: 680px;
  padding: 54px 54px 44px;
  background: #dfe5ec;
  box-shadow: inset 0 0 0 1px rgba(74, 88, 126, 0.15);
}

.aura-feed-meta,
.aura-feed-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
}

.aura-feed-meta {
  font-size: 0.77rem;
  font-weight: 600;
}

.aura-frame-quote {
  position: absolute;
  top: 50%;
  right: 54px;
  left: 54px;
  transform: translateY(-50%);
  padding: 46px 14px 12px 48px;
}

.aura-frame-corner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--blue);
}

.aura-frame-corner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 1px;
  background: var(--blue);
  content: "";
}

.aura-frame-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.6vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.aura-frame-quote cite {
  display: block;
  margin-top: 28px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.aura-feed-actions {
  position: absolute;
  right: 54px;
  bottom: 44px;
  left: 54px;
  font-size: 1.45rem;
}

.aura-gesture {
  padding: 132px max(24px, calc((100vw - 1240px) / 2)) 148px;
  background: var(--midnight);
  color: var(--surface);
}

.aura-section-heading-light {
  margin-bottom: 72px;
}

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

.aura-gesture-grid article {
  min-height: 290px;
  padding: 38px clamp(24px, 3vw, 46px) 42px;
}

.aura-gesture-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.aura-gesture-grid article > span {
  color: #aeb9d8;
  font-family: var(--serif);
}

.aura-gesture-grid h3 {
  margin: 70px 0 14px;
  font-size: 1.65rem;
}

.aura-gesture-grid p {
  max-width: 280px;
  margin: 0;
  color: #b8becd;
}

.aura-privacy {
  display: grid;
  min-height: 730px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(64px, 11vw, 160px);
  padding: 120px max(24px, calc((100vw - 1120px) / 2));
  background: var(--dawn);
}

.aura-privacy-mark {
  display: grid;
  width: min(100%, 380px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(44, 33, 30, 0.28);
  color: #2c211e;
}

.aura-privacy-mark span {
  align-self: end;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.aura-privacy-mark strong {
  align-self: start;
  font-family: var(--serif);
  font-size: clamp(6rem, 11vw, 9rem);
  font-weight: 400;
  line-height: 1;
}

.aura-privacy-copy {
  max-width: 620px;
}

.aura-closing {
  display: grid;
  min-height: 650px;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  padding: 110px max(24px, calc((100vw - 1120px) / 2));
  background: var(--dusk);
}

.aura-closing > img {
  display: block;
  width: 170px;
  height: 170px;
  border-radius: 38px;
  object-fit: cover;
}

.aura-closing > div > p:last-child {
  margin: 28px 0 0;
  color: var(--secondary);
  font-size: 1.08rem;
}

.aura-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 46px max(24px, calc((100vw - 1240px) / 2)) 58px;
  background: var(--midnight);
  color: var(--surface);
}

.aura-footer nav {
  flex-wrap: wrap;
  color: #b8becd;
}

.aura-footer > p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: #858c9e;
  font-size: 0.72rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.brand-glyph {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.policy-page {
  min-height: 100vh;
  background: var(--paper);
}

.policy-shell {
  width: min(100% - 48px, 768px);
  margin: 0 auto;
  padding: 48px 0 96px;
}

.policy-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 28px;
}

.policy-content h1 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.policy-content p,
.policy-content li {
  color: #46413e;
  font-size: 1rem;
  line-height: 1.62;
}

.policy-content p {
  margin: 0 0 18px;
}

.policy-content ul {
  margin: 14px 0 18px;
  padding-left: 24px;
}

.policy-content li + li {
  margin-top: 9px;
}

.policy-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(109, 93, 130, 0.22);
}

.policy-section h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.legal-placeholder {
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(138, 95, 80, 0.1);
  color: #7e4334;
  font-weight: 700;
}

@media (max-width: 900px) {
  .aura-quote-experience {
    grid-template-columns: 1fr;
  }

  .aura-feed-card {
    width: min(100%, 680px);
    justify-self: center;
  }
}

@media (max-width: 820px) {
  .aura-nav {
    width: min(100% - 32px, 1240px);
    min-height: 76px;
  }

  .aura-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 126px 24px 82px;
  }

  .aura-hero h1 {
    font-size: clamp(3.15rem, 12vw, 5.2rem);
  }

  .aura-hero-visual {
    width: min(86vw, 360px);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .aura-section-heading h2,
  .aura-quote-copy h2,
  .aura-privacy-copy h2,
  .aura-closing h2 {
    font-size: 3rem;
  }

  .aura-onboarding {
    padding-top: 100px;
    padding-bottom: 105px;
  }

  .aura-screen-rail {
    display: flex;
    width: calc(100% + 24px);
    gap: 18px;
    overflow-x: auto;
    padding: 0 24px 22px 0;
    scroll-snap-type: x mandatory;
  }

  .aura-onboarding-screen {
    min-width: min(78vw, 330px);
    margin-top: 0;
    scroll-snap-align: start;
  }

  .aura-quote-experience {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .aura-feed-card {
    min-height: 570px;
    padding: 34px 28px 30px;
  }

  .aura-frame-quote {
    right: 28px;
    left: 28px;
    padding-left: 30px;
  }

  .aura-frame-quote blockquote {
    font-size: 2.65rem;
  }

  .aura-feed-actions {
    right: 28px;
    bottom: 30px;
    left: 28px;
  }

  .aura-gesture-grid {
    grid-template-columns: 1fr;
  }

  .aura-gesture-grid article {
    min-height: 220px;
  }

  .aura-gesture-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .aura-gesture-grid h3 {
    margin-top: 42px;
  }

  .aura-privacy {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .aura-privacy-mark {
    width: min(72vw, 300px);
  }

  .aura-closing {
    grid-template-columns: 1fr;
    min-height: 590px;
  }

  .aura-closing > img {
    width: 112px;
    height: 112px;
    border-radius: 26px;
  }

  .aura-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .aura-nav-links {
    gap: 14px;
    font-size: 0.72rem;
  }

  .aura-nav-links a:first-child {
    display: none;
  }

  .aura-hero h1 {
    font-size: 3.15rem;
  }

  .aura-hero-stamp {
    right: -12px;
    bottom: 54px;
  }

  .policy-shell {
    padding-top: 36px;
  }

  .policy-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
}

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