:root {
  color-scheme: light;
  --mint-50: #edf9f4;
  --mint-100: #d6f2e5;
  --mint-300: #5ed3b3;
  --mint-600: #0f7e67;
  --mint-700: #0a6757;
  --sky-100: #e8f6ff;
  --sky-600: #256d93;
  --amber-100: #fff4d5;
  --amber-600: #a26000;
  --lavender-100: #f0edff;
  --lavender-600: #6d5dd3;
  --coral-100: #fff0ed;
  --coral-600: #bd4d3d;
  --ink: #172026;
  --slate: #4b5b63;
  --muted: #6b7280;
  --line: #dfe8e5;
  --surface: #ffffff;
  --canvas: #f6f8f7;
  --soft: #f0f4f2;
  --shadow: 0 22px 70px rgba(12, 72, 63, 0.16);
  --small-shadow: 0 14px 36px rgba(12, 72, 63, 0.11);
  --max: 1180px;
  --hero-drift: 0px;
  --hero-fade: 1;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--canvas);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(246, 248, 247, 0.2), #f6f8f7 720px),
    var(--canvas);
}

body.legal,
body.support,
body.assets-page {
  background: var(--canvas);
}

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

a {
  color: var(--mint-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--mint-600);
}

p {
  color: var(--slate);
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 12px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(223, 232, 229, 0.75);
  background: rgba(246, 248, 247, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(15, 126, 103, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  color: var(--slate);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(15, 126, 103, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--mint-700) !important;
  box-shadow: 0 8px 22px rgba(15, 126, 103, 0.11);
}

.hero {
  min-height: calc(92svh - 72px);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    linear-gradient(130deg, #063b36 0%, #0f7e67 48%, #dff5ea 48.2%, #f6f8f7 100%);
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 58px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  max-width: 610px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mint-700);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint-300);
}

.hero .eyebrow {
  color: #dff7ef;
}

.hero h1,
.page-hero h1,
.legal-hero h1 {
  margin: 0;
  line-height: 0.96;
  font-size: 5rem;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
}

.hero-line {
  max-width: 590px;
  margin: 20px 0 0;
  color: #f7fffc;
  font-size: 1.45rem;
  line-height: 1.22;
  font-weight: 800;
}

.hero-text {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(245, 255, 251, 0.86);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: #ffffff;
  color: var(--mint-700);
  box-shadow: 0 16px 42px rgba(4, 37, 34, 0.26);
}

.app-store-link {
  display: inline-flex;
  width: min(168px, 100%);
  min-height: 40px;
  align-items: center;
  justify-content: flex-start;
  border-radius: 8px;
  text-decoration: none;
  line-height: 0;
  transition: transform 180ms ease, filter 180ms ease;
}

.app-store-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 28px rgba(4, 37, 34, 0.24));
}

.app-store-link img {
  display: block;
  width: 100%;
  height: auto;
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.button.dark {
  background: var(--mint-700);
  color: #ffffff;
  box-shadow: var(--small-shadow);
}

.button.light {
  background: #ffffff;
  color: var(--mint-700);
  border-color: var(--line);
}

.trust-row {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.trust-row li,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-visual {
  min-height: 650px;
  position: relative;
  opacity: var(--hero-fade);
}

.phone-stack {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-shot {
  position: absolute;
  width: min(30vw, 315px);
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform 260ms ease;
}

.hero-shot.primary-shot {
  right: 15%;
  top: 1%;
  transform: translateY(var(--hero-drift)) rotate(2deg);
  z-index: 2;
}

.hero-shot.secondary-shot {
  left: 4%;
  bottom: 2%;
  transform: translateY(calc(var(--hero-drift) * -0.4)) rotate(-6deg) scale(0.82);
  opacity: 0.84;
  z-index: 1;
}

.hero-shot.tertiary-shot {
  right: 0;
  bottom: 8%;
  transform: translateY(calc(var(--hero-drift) * -0.7)) rotate(7deg) scale(0.68);
  opacity: 0.62;
  z-index: 0;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 88px 0;
}

.section.compact {
  padding: 58px 0;
}

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

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2,
.detail-copy h2,
.cta-band h2,
.legal-content h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  font-size: 2.6rem;
  letter-spacing: 0;
}

.section-header p,
.detail-copy p,
.cta-band p {
  margin: 14px 0 0;
  font-size: 1.06rem;
  line-height: 1.7;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.proof-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
  padding: 28px 22px;
  border-left: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.proof-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.launch-notes {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.launch-notes-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.launch-notes-copy h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  font-size: 2.35rem;
  letter-spacing: 0;
}

.launch-notes-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 1.04rem;
  line-height: 1.65;
}

.launch-note-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.launch-note-list li {
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f6fbf8);
  box-shadow: 0 10px 30px rgba(12, 72, 63, 0.06);
}

.launch-note-list strong,
.launch-note-list span {
  display: block;
}

.launch-note-list strong {
  color: var(--ink);
  font-size: 1rem;
}

.launch-note-list span {
  margin-top: 8px;
  color: var(--slate);
  line-height: 1.58;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 52px;
  align-items: center;
}

.detail-grid.reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.detail-copy {
  max-width: 580px;
}

.feature-list,
.legal-content ul,
.support-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.legal-content li,
.support-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-top: 1px solid var(--line);
  color: var(--slate);
  line-height: 1.55;
}

.feature-list li::before,
.legal-content li::before,
.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint-300);
}

.device-frame {
  border-radius: 8px;
  border: 1px solid rgba(15, 126, 103, 0.16);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device-frame img {
  width: 100%;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step,
.plan,
.asset-card,
.support-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(12, 72, 63, 0.06);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--mint-100);
  color: var(--mint-700);
  font-weight: 900;
}

.step h3,
.plan h3,
.asset-card h3,
.support-card h3 {
  margin: 18px 0 8px;
  font-size: 1.12rem;
}

.step p,
.plan p,
.asset-card p,
.support-card p {
  margin: 0;
  line-height: 1.6;
}

.privacy-band {
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.privacy-band .section {
  padding: 88px 0;
}

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

.screen-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(12, 72, 63, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.screen-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--small-shadow);
}

.screen-card img {
  aspect-ratio: 1290 / 2796;
  width: 100%;
  object-fit: cover;
}

.screen-caption {
  padding: 14px 16px 16px;
}

.screen-caption strong {
  display: block;
  color: var(--ink);
}

.screen-caption span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.plan.highlight {
  border-color: rgba(15, 126, 103, 0.26);
  background: linear-gradient(180deg, #ffffff, #eef9f4);
}

.plan .chip {
  border-color: transparent;
  background: var(--mint-100);
  color: var(--mint-700);
}

.plan ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plan li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--slate);
}

.cta-band {
  margin: 8px auto 0;
  width: min(100% - 32px, var(--max));
  padding: 54px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    var(--mint-700);
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 46px 0 54px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero,
.legal-hero {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 74px 0 44px;
}

.page-hero p,
.legal-hero p {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-shell {
  width: min(100% - 32px, 880px);
  margin: 0 auto;
  padding-bottom: 88px;
}

.legal-content {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(12, 72, 63, 0.06);
}

.legal-content h2 {
  margin-top: 40px;
  font-size: 1.55rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  line-height: 1.72;
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.meta-box {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.meta-box span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.meta-box strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
}

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

.asset-card.wide,
.support-card.wide {
  grid-column: 1 / -1;
}

.screenshot-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.screenshot-table th,
.screenshot-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.screenshot-table th {
  color: var(--ink);
  background: var(--soft);
}

.screenshot-table tr:last-child td {
  border-bottom: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .hero-inner,
  .detail-grid,
  .detail-grid.reverse,
  .launch-notes-inner,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(165deg, #063b36 0%, #0f7e67 62%, #f6f8f7 62.2%, #f6f8f7 100%);
  }

  .hero-inner {
    padding-top: 48px;
    gap: 22px;
  }

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

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

  .hero-shot {
    width: min(47vw, 290px);
  }

  .hero-shot.primary-shot {
    right: 14%;
  }

  .hero-shot.secondary-shot {
    left: 10%;
  }

  .proof-inner,
  .launch-note-list,
  .workflow,
  .plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .nav {
    min-height: 64px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    padding: 24px 0 18px;
    gap: 10px;
  }

  .hero h1,
  .page-hero h1,
  .legal-hero h1 {
    font-size: 2.72rem;
  }

  .hero-line {
    margin-top: 14px;
    font-size: 1.08rem;
  }

  .hero-text,
  .section-header p,
  .detail-copy p,
  .page-hero p,
  .legal-hero p {
    font-size: 1rem;
  }

  .hero-text {
    margin-top: 14px;
    line-height: 1.55;
  }

  .actions {
    margin-top: 20px;
  }

  .button {
    min-height: 46px;
    padding: 12px 15px;
  }

  .trust-row {
    margin-top: 18px;
    gap: 8px;
  }

  .trust-row li,
  .chip {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 250px;
    margin-top: 18px;
  }

  .hero-shot {
    width: min(46vw, 180px);
    border-radius: 24px;
  }

  .hero-shot.primary-shot {
    right: 10%;
    top: 38px;
  }

  .hero-shot.secondary-shot {
    left: 4%;
    top: 4px;
    bottom: auto;
  }

  .hero-shot.tertiary-shot {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-header h2,
  .detail-copy h2,
  .launch-notes-copy h2,
  .cta-band h2 {
    font-size: 2.05rem;
  }

  .proof-inner,
  .launch-note-list,
  .workflow,
  .plans,
  .screen-gallery,
  .asset-grid,
  .support-grid,
  .legal-meta {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:last-child {
    border-right: 1px solid var(--line);
  }

  .cta-band {
    padding: 32px 24px;
  }

  .legal-content {
    padding: 24px;
  }

  .screenshot-table {
    display: block;
    overflow-x: auto;
  }
}
