:root {
  --ink: #050505;
  --text: #242424;
  --muted: #686157;
  --gold: #aa8f61;
  --gold-dark: #765b31;
  --cream: #eadfc4;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --line: #e6ded0;
  --shadow: 0 22px 48px rgba(65, 52, 32, 0.12);
  --max: 980px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

p {
  margin: 0;
  color: var(--text);
}

.section-inner {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(170, 143, 97, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.brand img {
  width: 115px;
  height: auto;
}

.brand span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 12px;
  color: #2b2924;
  font-size: 0.9rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  overflow: hidden;
  padding: 84px 0 108px;
  background:
    linear-gradient(105deg, rgba(238, 228, 201, 0.9) 0%, rgba(174, 151, 110, 0.9) 64%, rgba(255, 255, 255, 0.95) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 56px;
  min-height: 640px;
}

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

.eyebrow {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.3;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 5rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.05rem);
  max-width: 760px;
}

h3 {
  color: var(--gold-dark);
  font-size: 1.3rem;
}

.lead {
  margin-top: 42px;
  color: #ffffff;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.store-actions {
  gap: 16px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 188px;
  min-height: 62px;
  padding: 12px 18px;
  color: #ffffff;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(38, 30, 18, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  background: #161616;
  box-shadow: 0 22px 44px rgba(38, 30, 18, 0.22);
}

.store-button svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: currentColor;
}

.store-button span {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.store-button small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.store-button strong {
  color: #ffffff;
  font-size: 1.24rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: var(--ink);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.app-shot {
  width: 300px;
  aspect-ratio: 1320 / 2868;
  object-fit: contain;
  object-position: top center;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-visual .app-shot {
  position: absolute;
  top: 0;
}

.shot-front {
  right: 32px;
  z-index: 2;
}

.shot-back {
  right: -36px;
  top: 92px;
  transform: rotate(10deg);
  opacity: 0.92;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: -54px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.intro-strip div {
  min-height: 118px;
  padding: 24px;
  background: var(--paper);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 1rem;
}

.intro-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 56px;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.12fr);
}

.section-copy {
  min-width: 0;
}

.section-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  font-size: 1.06rem;
}

.mockup-pair {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
}

.mockup-pair .large {
  width: 310px;
}

.mockup-pair .small {
  position: absolute;
  right: 6px;
  bottom: 8px;
  width: 220px;
}

.mockup-pair.compact .large {
  transform: rotate(-8deg);
}

.mockup-pair.compact .small {
  transform: rotate(8deg);
}

.mockup-single {
  display: grid;
  place-items: center;
  min-height: 470px;
}

.mockup-single .app-shot {
  width: 320px;
}

.feature-row {
  display: flex;
  gap: 20px;
  margin-top: 62px;
}

.line-mark {
  flex: 0 0 62px;
  height: 6px;
  margin-top: 16px;
  background: var(--gold);
  box-shadow: 0 13px 0 var(--gold-dark);
}

.feature-row p,
.feature-list p {
  margin-top: 12px;
  font-size: 0.98rem;
}

.dashboard,
.notifications {
  background: var(--soft);
}

.wide {
  margin-bottom: 54px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 56px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.metric-card {
  min-height: 160px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(230, 222, 208, 0.72);
  box-shadow: var(--shadow);
}

.percent-card {
  display: flex;
  align-items: center;
  gap: 18px;
}

.metric-card strong {
  display: block;
  color: var(--gold-dark);
  font-size: 3.55rem;
  line-height: 1;
}

.metric-card span {
  color: var(--gold-dark);
  font-size: 1.04rem;
}

.arrow-up {
  display: inline-block;
  flex: 0 0 34px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 19px solid var(--gold-dark);
}

.arrow-up::after {
  content: "";
  display: block;
  width: 15px;
  height: 48px;
  margin-left: -7px;
  margin-top: 18px;
  background: var(--gold-dark);
}

.dashboard-shot {
  width: 340px;
  justify-self: end;
  transform: rotate(-8deg);
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 46px;
}

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

.feature-list article,
.support-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.wishlist {
  background: #ffffff;
}

.notification-shot {
  width: 310px;
  justify-self: center;
}

.final-cta {
  padding: 0;
  background: var(--gold);
  color: #ffffff;
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-block: 72px;
}

.final-inner > div {
  max-width: 700px;
}

.final-cta .eyebrow,
.final-cta h2 {
  color: #ffffff;
}

.final-cta .eyebrow {
  margin-bottom: 12px;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.site-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: 36px 0;
  color: var(--gold-dark);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 22px;
  text-align: left;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: right;
}

.site-footer p span,
.site-footer p a {
  color: var(--gold-dark);
  font-weight: 700;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.34fr);
  align-items: center;
  gap: 48px;
  width: min(var(--max), calc(100% - 48px));
  min-height: 520px;
  margin-inline: auto;
  padding: 96px 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  z-index: -1;
  height: 520px;
  background: linear-gradient(105deg, rgba(238, 228, 201, 0.95), rgba(177, 153, 111, 0.9));
}

.page-hero > div {
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  text-transform: none;
}

.page-hero .lead {
  color: #ffffff;
}

.page-hero img {
  width: 210px;
  aspect-ratio: 1320 / 2868;
  justify-self: center;
  object-fit: contain;
  object-position: top center;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.policy-hero img {
  width: 170px;
  border-radius: 34px;
}

.support-overview {
  padding-bottom: 62px;
}

.support-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  align-items: center;
  gap: 72px;
}

.support-checklist {
  display: grid;
  gap: 14px;
}

.support-checklist article {
  display: grid;
  grid-template-columns: 46px minmax(0, 0.5fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(38, 30, 18, 0.06);
}

.support-checklist span,
.support-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(178, 149, 95, 0.34);
  border-radius: 50%;
  background: rgba(178, 149, 95, 0.1);
}

.support-checklist strong {
  color: var(--ink);
  font-size: 1rem;
}

.support-checklist p {
  color: var(--muted);
  font-size: 0.95rem;
}

.support-topics {
  padding-top: 32px;
}

.support-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.support-section-heading h2 {
  max-width: 520px;
  font-size: 2.3rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.support-card {
  grid-column: span 4;
}

.support-card:nth-last-child(-n + 2) {
  grid-column: span 6;
}

.support-card span {
  margin-bottom: 28px;
}

.support-card h2 {
  font-size: 1.42rem;
}

.support-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.support-card a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
}

.contact-band {
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(246, 240, 227, 0.96), rgba(246, 240, 227, 0.76)),
    linear-gradient(135deg, #f7f1e4, #ffffff);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  align-items: start;
  gap: 68px;
}

.contact-copy {
  position: sticky;
  top: 118px;
}

.contact-note {
  margin-top: 32px;
  padding: 18px 20px;
  color: var(--muted);
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.72);
}

.support-form {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(178, 149, 95, 0.24);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(38, 30, 18, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-form label {
  display: grid;
  gap: 8px;
}

.support-form label span {
  color: var(--gold-dark);
  font-weight: 600;
}

.support-form input,
.support-form textarea,
.file-upload {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.support-form textarea {
  min-height: 150px;
  resize: vertical;
}

.screenshot-field {
  display: grid;
  gap: 12px;
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  cursor: pointer;
  border-style: dashed;
  background: #fbf8f1;
  transition: border-color 180ms ease, background 180ms ease;
}

.file-upload:hover {
  border-color: var(--gold);
  background: #fffaf0;
}

.file-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.file-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 42px;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
  background: var(--ink);
}

.file-upload strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.file-upload small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.file-list {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.file-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
}

.file-list span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-list small {
  flex: 0 0 auto;
  color: var(--muted);
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-content {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 110px;
}

.policy-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 58px;
  padding: 18px 22px;
  border: 1px solid rgba(178, 149, 95, 0.28);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(178, 149, 95, 0.12), rgba(255, 255, 255, 0.92));
}

.policy-meta span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-meta strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.policy-content section + section {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  font-size: 2rem;
}

.policy-content p {
  margin-top: 16px;
  color: #2a2926;
}

.policy-content ul,
.policy-content ol {
  margin: 18px 0 0;
  padding-left: 24px;
  color: #2a2926;
}

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

.policy-content a {
  color: var(--gold-dark);
  text-decoration: underline;
}

@media (max-width: 1060px) {
  .hero-inner,
  .split,
  .split.reverse,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .support-overview-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-inner {
    gap: 44px;
    min-height: auto;
  }

  .hero-visual {
    width: min(520px, 100%);
    min-height: 600px;
    margin-inline: auto;
  }

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

  .support-card,
  .support-card:nth-last-child(-n + 2) {
    grid-column: span 1;
  }

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

  .dashboard-shot {
    justify-self: center;
  }

  .mockup-pair,
  .mockup-single {
    min-height: 430px;
  }
}

@media (max-width: 780px) {
  .section-inner,
  .site-footer,
  .page-hero,
  .support-grid,
  .contact-panel,
  .policy-content {
    width: min(100% - 36px, var(--max));
  }

  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 70px 0 82px;
  }

  .lead,
  .section-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 540px;
  }

  .app-shot {
    width: 245px;
  }

  .shot-front {
    left: 0;
    right: auto;
  }

  .shot-back {
    right: 6px;
    top: 70px;
  }

  .intro-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .dashboard-grid,
  .feature-list.two,
  .support-grid,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .support-checklist article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .support-checklist article p {
    grid-column: 2;
  }

  .support-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .support-form {
    padding: 22px;
  }

  .mockup-pair .large,
  .mockup-single .app-shot,
  .dashboard-shot,
  .notification-shot {
    width: 270px;
  }

  .mockup-pair .small {
    right: 5%;
    width: 190px;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: center;
  }

  .site-footer nav {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

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

  .policy-meta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 44px;
  }
}

@media (max-width: 480px) {
  .brand span {
    display: none;
  }

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

  .button,
  .store-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .app-shot {
    width: 212px;
    border-radius: 22px;
  }

  .shot-back {
    right: 14px;
    top: 72px;
  }

  .mockup-pair,
  .mockup-single {
    min-height: 390px;
  }

  .mockup-pair .large,
  .mockup-single .app-shot,
  .dashboard-shot,
  .notification-shot {
    width: 235px;
  }

  .mockup-pair .small {
    width: 165px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .feature-row {
    flex-direction: column;
    margin-top: 42px;
  }

  .line-mark {
    margin-top: 0;
  }

  .metric-card {
    min-height: auto;
  }
}
