:root {
  --ink: #141414;
  --muted: #6f6761;
  --line: #eadbd1;
  --surface: #ffffff;
  --soft: #fff4ed;
  --accent: #f47a2a;
  --accent-dark: #bf541b;
  --gold: #f2b84b;
  --teal: #40becd;
  --green: #159463;
  --shadow: 0 22px 70px rgba(83, 43, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  padding: 76px 6vw 124px;
  background: var(--soft);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-logo {
  display: block;
  width: min(280px, 72vw);
  height: auto;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.lead {
  margin: 24px 0 0;
  max-width: 600px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions,
.download-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button:hover {
  text-decoration: none;
}

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

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.hero-visual {
  position: absolute;
  right: 5vw;
  bottom: 34px;
  z-index: 1;
  width: min(48vw, 620px);
  min-width: 360px;
  height: min(74vh, 690px);
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  display: block;
  width: auto;
  height: 100%;
  max-height: 690px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-phone-main {
  right: 0;
  bottom: 0;
}

.hero-phone-secondary {
  right: 250px;
  bottom: -52px;
  height: 72%;
  opacity: 0.92;
  transform: rotate(-5deg);
}

.section,
.support-layout,
.policy-content,
.trust-band {
  padding: 76px 6vw;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.feature-card,
.contact-panel,
.issue-panel,
.faq-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  padding: 24px;
}

.feature-card:nth-child(1) {
  border-top: 5px solid var(--accent);
}

.feature-card:nth-child(2) {
  border-top: 5px solid var(--teal);
}

.feature-card:nth-child(3) {
  border-top: 5px solid var(--green);
}

.feature-card p,
.download-section p,
.policy-content p,
.faq-list p,
.issue-panel p,
.plain-list {
  color: var(--muted);
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
  color: #ffffff;
  background: var(--ink);
}

.trust-band .eyebrow,
.trust-band p {
  color: #c5d8cd;
}

.download-section {
  justify-content: space-between;
  margin-top: 0;
  background: var(--soft);
}

.app-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 76px 6vw;
  background: #ffffff;
}

.app-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(83, 43, 20, 0.1);
}

.download-section div {
  max-width: 720px;
}

.page-hero {
  padding: 76px 6vw 52px;
  background: var(--soft);
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.contact-panel,
.issue-panel {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 20px 0 0;
}

.contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.note {
  margin-top: 22px;
  padding: 14px;
  color: var(--accent-dark);
  background: #e8f5ef;
  border-radius: 8px;
  font-size: 0.92rem;
}

.plain-list {
  padding-left: 20px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.policy-page {
  background: #ffffff;
}

.policy-content {
  max-width: 880px;
}

.policy-content h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.policy-content h3 {
  margin: 24px 0 8px;
  font-size: 1.05rem;
}

.policy-content ul {
  margin: 10px 0 20px;
  padding-left: 22px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 6vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-layout,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: flex-start;
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 48px;
  }

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

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    height: 520px;
    margin-top: 38px;
  }

  .hero-phone-main {
    right: 6vw;
  }

  .hero-phone-secondary {
    right: auto;
    left: 0;
    bottom: -18px;
    height: 68%;
  }

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

  .app-gallery {
    grid-template-columns: 1fr;
  }

  .app-gallery img {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .site-nav {
    gap: 12px;
  }

  .hero,
  .section,
  .app-gallery,
  .support-layout,
  .policy-content,
  .trust-band,
  .page-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-visual {
    height: 440px;
  }

  .hero-phone {
    border-radius: 26px;
  }

  .hero-phone-main {
    right: 0;
  }

  .hero-phone-secondary {
    left: -44px;
  }

  .button {
    width: 100%;
  }
}
