:root {
  color-scheme: dark;
  --midnight-950: #031419;
  --midnight-900: #061c23;
  --midnight-850: #09252c;
  --midnight-800: #0c3037;
  --jade-500: #5fb58e;
  --jade-300: #91d6b4;
  --gold-500: #e1b45b;
  --gold-300: #f4d58f;
  --ivory-100: #fff7e7;
  --ivory-200: #f4e7cb;
  --coral-400: #e7826c;
  --paper: #f6ecd6;
  --ink: #153139;
  --line-dark: rgba(255, 247, 231, 0.12);
  --line-light: rgba(21, 49, 57, 0.13);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif;
}

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

html {
  min-width: 320px;
  background: var(--midnight-950);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ivory-100);
  background:
    radial-gradient(circle at 88% 8%, rgba(225, 180, 91, 0.12), transparent 27rem),
    radial-gradient(circle at 8% 46%, rgba(95, 181, 142, 0.1), transparent 32rem),
    linear-gradient(150deg, #08242b 0%, var(--midnight-950) 55%, #062129 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  text-wrap: balance;
}

:is(
    html:lang(ar),
    html:lang(he),
    html:lang(ur),
    html:lang(bn),
    html:lang(gu),
    html:lang(hi),
    html:lang(kn),
    html:lang(ml),
    html:lang(mr),
    html:lang(or),
    html:lang(pa),
    html:lang(ta),
    html:lang(te),
    html:lang(th),
    html:lang(ja),
    html:lang(ko),
    html:lang(zh)
  ) :is(h1, h2, .eyebrow, .faq-list summary) {
  letter-spacing: normal;
}

.wrap {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  padding: 11px 16px;
  color: var(--midnight-950);
  background: var(--gold-300);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(3, 20, 25, 0.56);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.locale-bar {
  position: relative;
  z-index: 9;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(3, 20, 25, 0.36);
}

.locale-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.language-picker {
  position: relative;
}

.language-picker summary {
  min-height: 44px;
  padding: 9px 0;
  display: flex;
  align-items: center;
  color: rgba(255, 247, 231, 0.72);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
  list-style: none;
}

.language-picker summary::-webkit-details-marker {
  display: none;
}

.language-picker summary::after {
  margin-inline-start: 9px;
  color: var(--gold-300);
  content: "▾";
  transition: transform 160ms ease;
}

.language-picker[open] summary::after {
  transform: rotate(180deg);
}

.language-list {
  position: absolute;
  top: calc(100% + 1px);
  inset-inline-end: 0;
  width: min(720px, calc(100vw - 32px));
  max-height: min(62vh, 520px);
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  overflow-y: auto;
  background: #0a2830;
  border: 1px solid rgba(255, 247, 231, 0.16);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.language-list a {
  min-height: 42px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  color: rgba(255, 247, 231, 0.72);
  border-radius: 9px;
  font-size: 0.78rem;
  line-height: 1.25;
  text-decoration: none;
}

.language-list a:hover,
.language-list a[aria-current="page"] {
  color: var(--ivory-100);
  background: rgba(145, 214, 180, 0.12);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-app-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex: 0 0 auto;
  border-radius: 13px;
  box-shadow:
    2px 3px 0 rgba(170, 149, 106, 0.82),
    0 12px 28px rgba(0, 0, 0, 0.3);
  image-rendering: auto;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-luma {
  color: var(--gold-500);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.brand-name {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 34px);
}

.main-nav a,
.site-footer a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 247, 231, 0.67);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.main-nav a[aria-current="page"] {
  color: var(--ivory-100);
}

.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  min-height: 690px;
  padding-block: clamp(82px, 10vw, 132px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.21em;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 7.5vw, 7rem);
  line-height: 0.91;
  letter-spacing: -0.046em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

[dir="rtl"] .directional-arrow {
  display: inline-block;
  transform: scaleX(-1);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 247, 231, 0.69);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.localized-intro {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 247, 231, 0.66);
}

.app-store-cta {
  width: fit-content;
  max-width: 430px;
  margin-top: 26px;
  padding: 10px;
  padding-inline-end: 18px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--ivory-100);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 247, 231, 0.16);
  border-radius: 22px;
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1.35;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.app-store-cta img {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.localized-details {
  padding-block: clamp(70px, 9vw, 116px);
}

.localized-copy {
  max-width: 850px;
  display: grid;
  gap: 18px;
  color: rgba(255, 247, 231, 0.68);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.localized-copy p {
  margin: 0;
}

.actions {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 13px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button-primary {
  color: var(--midnight-950);
  background: var(--gold-500);
  box-shadow: 0 14px 34px rgba(225, 180, 91, 0.18);
}

.button-secondary {
  border-color: rgba(255, 247, 231, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.button-light {
  color: var(--midnight-950);
  background: var(--ivory-100);
}

.response-note {
  margin: 20px 0 0;
  color: rgba(255, 247, 231, 0.47);
  font-size: 0.78rem;
}

.garden-art {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  isolation: isolate;
}

.art-halo {
  position: absolute;
  width: min(36vw, 430px);
  aspect-ratio: 1;
  top: 8px;
  right: 0;
  background: radial-gradient(circle, rgba(225, 180, 91, 0.14), transparent 68%);
  border-radius: 50%;
  filter: blur(1px);
}

.art-moon {
  position: absolute;
  width: 164px;
  aspect-ratio: 1;
  top: 0;
  right: 30px;
  background:
    radial-gradient(circle at 38% 33%, rgba(255, 255, 255, 0.86), transparent 7%),
    radial-gradient(circle at 63% 65%, rgba(188, 166, 115, 0.22), transparent 14%),
    linear-gradient(145deg, #fff6d8, #d3bf8a);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(244, 213, 143, 0.18);
  opacity: 0.9;
}

.art-star {
  position: absolute;
  width: 5px;
  aspect-ratio: 1;
  background: var(--gold-300);
  border-radius: 50%;
  box-shadow:
    0 0 10px var(--gold-300),
    0 0 25px rgba(244, 213, 143, 0.55);
}

.star-one {
  top: 55px;
  left: 10%;
}

.star-two {
  top: 138px;
  right: 5%;
  transform: scale(0.7);
}

.art-bridge {
  position: absolute;
  width: 105%;
  height: 185px;
  right: -8%;
  bottom: 76px;
  border: 18px solid rgba(101, 128, 126, 0.2);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50% 50% 0 0;
  transform: rotate(-7deg);
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.18));
}

.art-bridge::before {
  position: absolute;
  inset: -27px -15px auto;
  height: 7px;
  background: repeating-linear-gradient(
    90deg,
    rgba(149, 167, 156, 0.38) 0 4px,
    transparent 4px 38px
  );
  border-top: 3px solid rgba(149, 167, 156, 0.25);
  content: "";
}

.art-water {
  position: absolute;
  right: -4%;
  bottom: 25px;
  width: 108%;
  height: 90px;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 13px,
      rgba(145, 214, 180, 0.08) 13px 14px
    ),
    radial-gradient(ellipse at center, rgba(95, 181, 142, 0.12), transparent 70%);
  border-radius: 50%;
  transform: perspective(240px) rotateX(68deg);
}

.art-lotus {
  position: absolute;
  bottom: 32px;
  width: 30px;
  height: 19px;
  background: var(--coral-400);
  border-radius: 80% 0 80% 0;
  box-shadow:
    -10px 5px 0 -2px rgba(231, 130, 108, 0.75),
    10px 5px 0 -2px rgba(231, 130, 108, 0.75);
  transform: rotate(45deg);
  opacity: 0.78;
}

.lotus-one {
  left: 8%;
}

.lotus-two {
  right: 3%;
  bottom: 63px;
  transform: rotate(35deg) scale(0.7);
  opacity: 0.5;
}

.art-tile {
  position: absolute;
  z-index: 3;
  width: 205px;
  height: 244px;
  right: 15%;
  bottom: 72px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.92), transparent 10%),
    linear-gradient(145deg, #fffaf0 0%, #eee0c2 78%);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  box-shadow:
    11px 13px 0 #927b4f,
    0 32px 58px rgba(0, 0, 0, 0.4),
    inset -7px -9px 18px rgba(148, 121, 67, 0.12);
  transform: rotate(4deg);
}

.tile-crescent {
  position: absolute;
  width: 84px;
  height: 108px;
  top: 53px;
  left: 48px;
  border-radius: 50%;
  box-shadow: 23px 7px 0 -7px #b17f25;
  transform: rotate(-22deg);
}

.tile-lantern {
  position: absolute;
  width: 24px;
  height: 35px;
  top: 106px;
  right: 39px;
  border: 3px solid #b17f25;
  border-radius: 7px;
  box-shadow: inset 0 0 9px rgba(225, 180, 91, 0.55);
}

.tile-lantern::before,
.tile-lantern::after {
  position: absolute;
  left: 50%;
  background: #b17f25;
  content: "";
  transform: translateX(-50%);
}

.tile-lantern::before {
  top: -11px;
  width: 2px;
  height: 9px;
}

.tile-lantern::after {
  bottom: -11px;
  width: 2px;
  height: 8px;
}

.trust-strip {
  border-block: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.018);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid article {
  min-height: 148px;
  padding: 32px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.trust-grid article:first-child {
  padding-inline-start: 0;
}

.trust-grid article:last-child {
  padding-inline-end: 0;
}

.trust-grid article + article {
  border-inline-start: 1px solid var(--line-dark);
}

.trust-number,
.path-label,
.faq-number,
.policy-number {
  color: var(--coral-400);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.trust-grid h2 {
  margin: 0 0 4px;
  font-size: 1.35rem;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 247, 231, 0.56);
  font-size: 0.88rem;
}

.section {
  padding-block: clamp(84px, 10vw, 132px);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 13px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 247, 231, 0.59);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.path-card {
  min-height: 385px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: linear-gradient(150deg, #fff8e9, #e7dbc0);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 25px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.path-card-featured {
  color: var(--ivory-100);
  background:
    radial-gradient(circle at 90% 4%, rgba(225, 180, 91, 0.18), transparent 45%),
    linear-gradient(150deg, #17473f, #0c2d31);
  border-color: rgba(145, 214, 180, 0.22);
}

.path-icon {
  width: 44px;
  aspect-ratio: 1;
  margin-bottom: 58px;
  display: grid;
  place-items: center;
  color: var(--midnight-950);
  background: var(--gold-500);
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 900;
}

.path-icon-leaf {
  position: relative;
  background: var(--jade-500);
}

.path-icon-leaf::before {
  width: 20px;
  height: 25px;
  border: 2px solid var(--midnight-900);
  border-radius: 80% 10% 80% 10%;
  content: "";
  transform: rotate(13deg);
}

.path-icon-mail {
  position: relative;
  background: var(--coral-400);
}

.path-icon-mail::before {
  width: 21px;
  height: 15px;
  border: 2px solid var(--midnight-900);
  border-radius: 3px;
  content: "";
}

.path-icon-mail::after {
  position: absolute;
  width: 13px;
  height: 13px;
  top: 10px;
  border-right: 2px solid var(--midnight-900);
  border-bottom: 2px solid var(--midnight-900);
  content: "";
  transform: rotate(45deg);
}

.path-card .path-label {
  color: #957431;
}

.path-card-featured .path-label {
  color: var(--gold-500);
}

.path-card h3 {
  margin: 10px 0 12px;
  font-size: 1.75rem;
  line-height: 1.07;
}

.path-card p {
  margin-bottom: 24px;
  color: rgba(21, 49, 57, 0.72);
  font-size: 0.91rem;
}

.path-card-featured p {
  color: rgba(255, 247, 231, 0.66);
}

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 850;
}

.closing-band {
  color: var(--midnight-950);
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(120deg, #d5a648, #efca78);
}

.closing-inner {
  min-height: 280px;
  padding-block: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.closing-inner .eyebrow {
  color: #6e521b;
}

.closing-inner h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: rgba(255, 247, 231, 0.64);
  font-size: 0.78rem;
}

.footer-inner p {
  margin: 0;
}

.site-footer a {
  font-size: 0.78rem;
}

.page-hero {
  padding-block: clamp(80px, 10vw, 132px) clamp(62px, 8vw, 96px);
  border-bottom: 1px solid var(--line-dark);
}

.page-hero h1 {
  margin-bottom: 23px;
  font-size: clamp(4rem, 9vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.048em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.page-hero > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 247, 231, 0.62);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.content-layout {
  padding-block: clamp(68px, 9vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: clamp(44px, 7vw, 90px);
}

.compact-heading {
  margin-bottom: 30px;
}

.compact-heading h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  min-height: 88px;
  padding-block: 22px;
  display: grid;
  grid-template-columns: 38px 1fr 30px;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  position: relative;
  width: 28px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 247, 231, 0.18);
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--gold-300);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 48px 24px 53px;
}

[dir="rtl"] .faq-answer {
  padding: 0 53px 24px 48px;
}

.faq-answer p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 247, 231, 0.65);
}

.contact-card {
  position: sticky;
  top: 30px;
  padding: 30px;
  color: var(--ink);
  background: linear-gradient(145deg, #fff8e9, #e7dbc0);
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.contact-card .eyebrow {
  color: #876723;
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: 2.2rem;
  line-height: 1;
}

.contact-card > p:not(.eyebrow, .security-note) {
  color: rgba(21, 49, 57, 0.72);
}

.contact-row {
  padding-block: 14px;
  display: grid;
  gap: 1px;
  color: var(--ink);
  border-top: 1px solid var(--line-light);
  text-decoration: none;
}

.contact-row span {
  color: rgba(21, 49, 57, 0.76);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row strong {
  font-size: 0.92rem;
  word-break: break-word;
}

.contact-location {
  border-bottom: 1px solid var(--line-light);
}

.security-note {
  margin: 20px 0 0;
  color: rgba(21, 49, 57, 0.78);
  font-size: 0.76rem;
}

.privacy-hero {
  border-bottom: 0;
}

.privacy-summary {
  color: var(--ink);
  background: var(--paper);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.summary-grid article {
  min-height: 178px;
  padding: 38px 34px;
}

.summary-grid article:first-child {
  padding-inline-start: 0;
}

.summary-grid article:last-child {
  padding-inline-end: 0;
}

.summary-grid article + article {
  border-inline-start: 1px solid var(--line-light);
}

.summary-mark {
  width: 27px;
  aspect-ratio: 1;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: #27795b;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.summary-grid h2 {
  margin-bottom: 5px;
  font-size: 1.38rem;
}

.summary-grid p {
  margin-bottom: 0;
  color: rgba(21, 49, 57, 0.78);
  font-size: 0.85rem;
}

.policy {
  padding-block: clamp(76px, 10vw, 126px);
}

.policy-intro {
  max-width: 840px;
  padding-bottom: clamp(60px, 8vw, 92px);
}

.policy-intro > p:last-child {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  line-height: 1.35;
  letter-spacing: -0.016em;
}

.policy-sections {
  border-top: 1px solid var(--line-dark);
}

.policy-sections section {
  padding-block: clamp(34px, 5vw, 53px);
  display: grid;
  grid-template-columns: 82px minmax(0, 760px);
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.policy-sections h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.policy-sections p {
  color: rgba(255, 247, 231, 0.65);
}

.policy-sections p:last-child {
  margin-bottom: 0;
}

.policy-sections a {
  color: var(--jade-300);
  font-weight: 750;
}

.not-found {
  min-height: 100vh;
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.not-found-tile {
  width: 82px;
  aspect-ratio: 1;
  margin-bottom: 32px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(145deg, #fffaf0, #e3d6b9);
  border-radius: 20px;
  box-shadow:
    6px 8px 0 #aa956a,
    var(--shadow);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 800;
}

.not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.92;
}

.not-found > p:not(.eyebrow) {
  color: rgba(255, 247, 231, 0.62);
}

.not-found .button {
  margin-top: 18px;
}

@media (hover: hover) {
  .main-nav a:hover,
  .site-footer a:hover {
    color: var(--gold-300);
  }

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

  .button-primary:hover {
    background: var(--gold-300);
  }

  .button-secondary:hover {
    border-color: rgba(255, 247, 231, 0.34);
    background: rgba(255, 255, 255, 0.075);
  }

  .app-store-cta:hover {
    border-color: rgba(255, 247, 231, 0.3);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
  }

  .path-card:hover {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    transform: translateY(-5px);
  }

  .faq-list summary:hover {
    color: var(--gold-300);
  }

  .contact-row:hover strong {
    color: #27795b;
  }
}

@media (max-width: 940px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .garden-art {
    min-height: 420px;
    width: min(610px, 100%);
    margin-inline: auto;
  }

  .art-halo {
    width: 420px;
  }

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

  .path-card:last-child {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    position: static;
    max-width: 620px;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 32px, 1160px);
  }

  .language-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-inner {
    min-height: 80px;
  }

  .brand-copy {
    display: none;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 70px;
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.5rem);
  }

  .garden-art {
    min-height: 345px;
  }

  .art-moon {
    width: 122px;
  }

  .art-tile {
    width: 154px;
    height: 186px;
    right: 16%;
    bottom: 64px;
    border-radius: 22px;
  }

  .tile-crescent {
    width: 61px;
    height: 80px;
    top: 39px;
    left: 35px;
    box-shadow: 17px 5px 0 -6px #b17f25;
  }

  .tile-lantern {
    top: 78px;
    right: 28px;
    transform: scale(0.78);
  }

  .art-bridge {
    bottom: 48px;
  }

  .trust-grid,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article:first-child,
  .trust-grid article:last-child,
  .summary-grid article,
  .summary-grid article:first-child,
  .summary-grid article:last-child {
    min-height: 0;
    padding: 25px 0;
  }

  .trust-grid article + article,
  .summary-grid article + article {
    border-top: 1px solid var(--line-dark);
    border-inline-start: 0;
  }

  .summary-grid article + article {
    border-top-color: var(--line-light);
  }

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

  .path-card,
  .path-card:last-child {
    min-height: 340px;
    grid-column: auto;
  }

  .path-icon {
    margin-bottom: 40px;
  }

  .closing-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    padding-block: 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .faq-list summary {
    min-height: 82px;
    grid-template-columns: 30px 1fr 28px;
    gap: 10px;
  }

  .faq-answer {
    padding-inline-start: 40px;
    padding-inline-end: 0;
  }

  .contact-card {
    padding: 25px;
  }

  .policy-sections section {
    grid-template-columns: 1fr;
    gap: 11px;
  }
}

@media (max-width: 420px) {
  .main-nav {
    gap: 13px;
  }

  .main-nav a {
    font-size: 0.73rem;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .app-store-cta {
    width: 100%;
  }

  .garden-art {
    margin-inline: -8px;
  }

  .art-tile {
    right: 12%;
  }
}

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

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

@media print {
  :root {
    color-scheme: light;
  }

  body {
    color: #111;
    background: #fff;
  }

  body::before,
  .site-header,
  .site-footer,
  .privacy-summary {
    display: none;
  }

  .page-hero,
  .policy {
    width: 100%;
    padding: 20px 0;
  }

  .page-hero h1 {
    color: #111;
    font-size: 42pt;
  }

  .page-hero > p:last-child,
  .policy-intro > p:last-child,
  .policy-sections p {
    color: #222;
  }

  .policy-sections section {
    break-inside: avoid;
    border-color: #ccc;
  }

  .policy-sections h2,
  .policy-number,
  .eyebrow {
    color: #111;
  }

  .policy-sections a {
    color: #111;
  }
}
