:root {
  --background: #ffffff;
  --text: #333333;
  --muted: #5f5f5f;
  --surface: #f6f3ee;
  --surface-strong: #ebe3d7;
  --accent: #d86f45;
  --shadow: 0 24px 60px rgba(55, 35, 20, 0.12);
  --radius-large: 32px;
  --radius-medium: 24px;
  --content-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top left, #fff8f2 0, #ffffff 34%), var(--background);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.site-nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.menu-wrap {
  position: relative;
}

.menu-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(216, 111, 69, 0.18);
  border-radius: 14px;
  background: rgba(255, 248, 242, 0.96);
  box-shadow: 0 12px 30px rgba(55, 35, 20, 0.08);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text);
}

.menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(216, 111, 69, 0.16);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(55, 35, 20, 0.12);
  z-index: 20;
}

.menu-dropdown a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
}

.menu-dropdown a:hover,
.menu-dropdown a:focus-visible {
  background: rgba(246, 243, 238, 0.95);
  outline: none;
}

.hero,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 104px);
  padding: 32px 0 56px;
}

.hero-copy h1,
.feature-copy h2 {
  margin: 0 0 16px;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-subheading {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-media img {
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.hero-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.feature-media img {
  max-width: 100%;
  max-height: 600px;
  width: auto;
  margin: 0 auto;
  /* border-radius: var(--radius-large);
  box-shadow: var(--shadow); */
}

.feature-grid {
  margin-top: 32px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(246, 243, 238, 0.88), rgba(255, 248, 242, 0.94));
  border: 1px solid rgba(216, 111, 69, 0.1);
  border-radius: var(--radius-large);
}

.feature-grid + .feature-grid {
  margin-top: 28px;
}

.feature-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.feature-copy p {
  margin: 0 0 14px;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-copy li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  font-weight: 500;
}

.feature-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #efb36b);
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .page-shell {
    width: min(calc(100% - 1.5rem), var(--content-width));
    padding-top: 20px;
  }

  .site-nav {
    margin-bottom: 4px;
  }

  .hero,
  .feature-grid,
  .feature-grid-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero {
    min-height: auto;
    padding-top: 8px;
  }

  .feature-grid {
    padding: 24px;
  }

  .feature-grid .feature-copy {
    order: 1;
  }

  .feature-grid .feature-media {
    order: 2;
  }

  .feature-grid-reverse .feature-copy {
    order: 1;
  }

  .feature-grid-reverse .feature-media {
    order: 2;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--content-width));
    padding-bottom: 48px;
  }

  .site-nav {
    margin-bottom: -2px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .feature-grid {
    padding: 20px;
    border-radius: var(--radius-medium);
  }

  .hero-media img,
  .feature-media img {
    border-radius: var(--radius-medium);
  }
}

.support-hero {
  padding: 32px 0 24px;
}

.support-heading-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.support-heading-row h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.support-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.support-subheading {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-card {
  margin-top: 28px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(246, 243, 238, 0.88), rgba(255, 248, 242, 0.94));
  border: 1px solid rgba(216, 111, 69, 0.1);
  border-radius: var(--radius-large);
}

.support-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.support-card h3 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.support-card p {
  margin: 0 0 14px;
  max-width: 46rem;
  color: var(--muted);
}

.support-card ul,
.support-card ol {
  margin: 0;
  padding-left: 24px;
}

.support-card li {
  margin-bottom: 10px;
}

.support-link-list {
  columns: 2;
  column-gap: 32px;
}

.support-link-list a {
  color: var(--text);
  font-weight: 600;
  text-decoration-color: rgba(216, 111, 69, 0.45);
  text-underline-offset: 0.16em;
}

.support-step-list li::marker {
  font-weight: 800;
  color: var(--accent);
}

.app-store-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 32px 24px;
  text-align: center;
}

.app-store-cta p {
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
}

.app-store-cta img {
  width: 160px;
  height: 54px;
}

@media (max-width: 900px) {
  .support-link-list {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .support-hero {
    padding-top: 0;
  }

  .support-heading-row {
    gap: 12px;
    align-items: flex-start;
  }

  .support-logo {
    width: 44px;
    height: 44px;
  }

  .support-card {
    padding: 22px 20px;
    border-radius: var(--radius-medium);
  }
}
