:root {
  --white: #ffffff;
  --black: #000000;
  --espresso: #2b2623;
  --ash-brown: #5f5853;
  --warm-taupe: #9a928c;
  --sand: #c5bdb5;
  --fog: #e2ddd6;
  --linen: #e0dad3;
  --porcelain: #eeeae4;
  --pearl: #f3f0ed;
  --ivory: #f8f6f3;
  --mocha: #5a4a3f;
  --oatmeal: #d8cfc6;
  --brick-red: #7e2f2a;
  --blush: #e6cfcb;
  --amber: #b97a3a;
  --slate-blue: #6b7c8f;
  --sage: #6e7f5b;

  --page-bg: var(--ivory);
  --panel-bg: rgba(243, 240, 237, 0.84);
  --panel-strong: rgba(238, 234, 228, 0.96);
  --line: rgba(154, 146, 140, 0.26);
  --line-strong: rgba(95, 88, 83, 0.18);
  --shadow-soft: 0 24px 56px rgba(95, 88, 83, 0.11);
  --shadow-hover: 0 28px 72px rgba(90, 74, 63, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--espresso);
  background: var(--page-bg);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(224, 218, 211, 0.72), transparent 34%),
    radial-gradient(circle at 85% 8%, rgba(230, 207, 203, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(243, 240, 237, 0.9), rgba(248, 246, 243, 1));
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 38%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px,
      transparent 82px
    );
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

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

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

p,
ul,
li {
  margin-top: 0;
}

.site-shell {
  width: min(calc(100% - 1.5rem), var(--content-width));
  margin: 0 auto;
  padding-bottom: 2rem;
}

.site-header {
  padding-top: 1rem;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 246, 243, 0.82);
  box-shadow: 0 14px 40px rgba(95, 88, 83, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand,
h1,
h2,
h3,
summary {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.nav-links a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--ash-brown);
  font-size: 0.94rem;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(224, 218, 211, 0.82);
  color: var(--espresso);
  outline: none;
}

.hero {
  padding: 4.5rem 0 2rem;
  text-align: center;
}

.hero-support {
  padding-top: 5rem;
  padding-bottom: 2.75rem;
}

.hero-home {
  display: grid;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 2rem;
  text-align: left;
}

.hero-legal {
  padding-top: 4.25rem;
  padding-bottom: 2.5rem;
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.8rem;
  color: var(--mocha);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 9vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.subtitle {
  max-width: 38rem;
  margin: 1rem auto 0;
  color: var(--ash-brown);
  font-size: clamp(1.12rem, 3vw, 1.48rem);
  text-wrap: balance;
}

.hero-home .subtitle {
  margin-left: 0;
  margin-right: 0;
}

.hero-home-copy {
  max-width: 40rem;
}

.hero-home-subtitle {
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.pill-link-soft {
  background: rgba(255, 255, 255, 0.5);
}

.hero-home-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.phone-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid rgba(95, 88, 83, 0.14);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    radial-gradient(circle at top, rgba(230, 207, 203, 0.42), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(238, 234, 228, 0.92));
  box-shadow: 0 30px 65px rgba(95, 88, 83, 0.14);
}

.phone-label {
  margin-bottom: 1rem;
  color: var(--mocha);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.phone-focus-ring {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  aspect-ratio: 1 / 1;
  max-width: 13rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(185, 122, 58, 0.25);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0, rgba(248, 246, 243, 0.84) 48%, rgba(224, 218, 211, 0.78) 100%);
  text-align: center;
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.24),
    0 20px 40px rgba(185, 122, 58, 0.1);
}

.focus-time {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.focus-copy {
  color: var(--ash-brown);
  font-size: 0.92rem;
}

.phone-list {
  display: grid;
  gap: 0.7rem;
}

.phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ash-brown);
}

.phone-row span:last-child {
  color: var(--mocha);
  font-size: 0.94rem;
  font-weight: 700;
}

.phone-row-active {
  background: rgba(185, 122, 58, 0.12);
}

.aside-note {
  padding: 1rem 1.15rem;
  border-left: 2px solid rgba(185, 122, 58, 0.35);
  color: var(--ash-brown);
}

.aside-note-title {
  margin-bottom: 0.35rem;
  color: var(--espresso);
  font-weight: 700;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  color: var(--ash-brown);
  font-size: 0.95rem;
}

.card,
.document-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 100%),
    var(--panel-bg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.support-card,
.legal-links-card {
  padding: 1.5rem;
}

.support-card {
  display: grid;
  gap: 1.5rem;
}

.lead {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  line-height: 1.55;
  color: var(--ash-brown);
  text-wrap: pretty;
}

.support-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, #a3571a, var(--amber));
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(185, 122, 58, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(185, 122, 58, 0.31);
  filter: saturate(1.04);
  outline: none;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.5rem;
  padding: 0.72rem 1rem 0.72rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.98), rgba(0, 0, 0, 0.98));
  color: var(--white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.app-store-button:hover,
.app-store-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
  filter: brightness(1.04);
  outline: none;
}

.app-store-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
}

.app-store-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.app-store-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.app-store-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.82;
}

.app-store-title {
  margin-top: 0.14rem;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.support-email {
  margin-bottom: 0;
  color: var(--ash-brown);
  font-size: 0.95rem;
}

.support-note {
  margin-bottom: 0;
  color: var(--ash-brown);
  font-size: 0.95rem;
}

.support-email a {
  border-bottom: 1px solid rgba(95, 88, 83, 0.24);
}

.faq-section {
  margin-top: 3.5rem;
}

.section-heading {
  margin-bottom: 1.4rem;
}

.section-heading-left {
  max-width: 40rem;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(243, 240, 237, 0.75);
  box-shadow: 0 8px 24px rgba(95, 88, 83, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.faq-item[open] {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(95, 88, 83, 0.08);
  border-color: rgba(90, 74, 63, 0.18);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--mocha);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 42rem;
  margin: 0;
  padding: 0 0 1.3rem;
  color: var(--ash-brown);
  font-size: 1rem;
}

.faq-item p + p {
  margin-top: -0.35rem;
}

.faq-item ul,
.faq-item ol {
  margin: 0 0 1.3rem;
  padding-left: 1.25rem;
  color: var(--ash-brown);
}

.faq-item li + li {
  margin-top: 0.35rem;
}

.story-section,
.closing-section {
  margin-top: 3.5rem;
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.landing-card,
.contact-card {
  padding: 1.5rem;
}

.feature-card-tall {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 100%),
    linear-gradient(135deg, rgba(224, 218, 211, 0.7), rgba(243, 240, 237, 0.86));
}

.feature-number {
  margin-bottom: 1rem;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.feature-card p:last-child,
.landing-card p:last-child {
  margin-bottom: 0;
}

.quote-card {
  position: relative;
  margin-top: 3.5rem;
  padding: 1.8rem 1.5rem 1.5rem;
}

.quote-mark {
  position: absolute;
  top: 0.55rem;
  left: 1rem;
  color: rgba(185, 122, 58, 0.34);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 4.75rem;
  line-height: 1;
}

.quote-copy {
  position: relative;
  margin: 0;
  padding-left: 1.5rem;
  max-width: 47rem;
  color: var(--mocha);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.4rem, 3.4vw, 2.15rem);
  line-height: 1.35;
}

.landing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3.5rem;
}

.landing-card {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.landing-card-accent {
  background:
    radial-gradient(circle at top right, rgba(185, 122, 58, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 100%),
    var(--panel-bg);
}

.contact-card {
  display: grid;
  gap: 1.2rem;
}

.lead-compact {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}

.info-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3.5rem;
}

.info-card {
  padding: 1.5rem;
}

.info-card h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.info-card p:last-child {
  margin-bottom: 0;
}

.legal-links-card {
  display: grid;
  gap: 1.4rem;
  margin-top: 3.5rem;
}

.muted-copy {
  margin: 0.8rem 0 0;
  color: var(--ash-brown);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(95, 88, 83, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--espresso);
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.pill-link:hover,
.pill-link:focus-visible {
  background: rgba(224, 218, 211, 0.76);
  border-color: rgba(90, 74, 63, 0.22);
  transform: translateY(-1px);
  outline: none;
}

.document-wrap {
  max-width: 54rem;
  margin: 0 auto;
}

.document-card {
  padding: 1.5rem;
}

.document-card section + section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.document-card h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.document-card p,
.document-card li {
  color: var(--ash-brown);
  font-size: 1rem;
}

.document-card ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding: 1.5rem 0 0.25rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 0.2rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-copy {
  margin-bottom: 0;
  color: var(--ash-brown);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  color: var(--ash-brown);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--espresso);
  outline: none;
}

@media (min-width: 720px) {
  .site-shell {
    width: min(calc(100% - 2.25rem), var(--content-width));
  }

  .nav-wrap {
    flex-direction: row;
    padding: 1rem 1.25rem;
  }

  .support-card,
  .legal-links-card,
  .info-card {
    padding: 2.35rem;
  }

  .support-card {
    grid-template-columns: minmax(0, 1.4fr) minmax(15rem, 0.8fr);
    align-items: end;
  }

  .hero-home {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    align-items: center;
    gap: 2.25rem;
  }

  .feature-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
  }

  .landing-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .document-card {
    padding: 2.35rem;
  }

  .site-footer {
    flex-direction: row;
    align-items: end;
  }
}

@media (min-width: 1024px) {
  .hero-support {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .hero-home {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }

  .hero-legal {
    padding-top: 5rem;
  }

  .support-card,
  .legal-links-card,
  .document-card,
  .feature-card,
  .landing-card,
  .contact-card,
  .quote-card {
    border-radius: 2.25rem;
  }

  .faq-item {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
