:root {
  color-scheme: light;
  --bg: #f7f3ed;
  --surface: #fffdf9;
  --ink: #15262a;
  --muted: #5f6e70;
  --line: #ddd5c9;
  --brand: #079a9a;
  --brand-dark: #007477;
  --brand-soft: #e2f5f3;
  --brand-shadow: rgba(0, 116, 119, 0.24);
  --coral: #cf5f45;
  --gold: #d8a739;
  --shadow: 0 24px 70px rgba(25, 38, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(221, 213, 201, 0.8);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.site-header nav,
.hero-actions,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.site-header nav {
  justify-content: center;
  gap: clamp(12px, 2.6vw, 28px);
}

.site-header nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--brand-dark);
}

.header-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 850;
  text-decoration: none;
}

.disabled-button {
  cursor: default;
  user-select: none;
}

.header-button,
.primary-button {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 12px 26px var(--brand-shadow);
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(22px, 3.5vw, 48px);
  align-items: center;
  max-width: 1420px;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px) clamp(18px, 4vw, 54px) 40px;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.lede {
  max-width: 460px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.15vw, 1.06rem);
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 24px 0 14px;
}

.signal-line {
  max-width: 420px;
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-image,
.shot {
  margin: 0;
}

.hero-image {
  overflow: hidden;
  min-height: clamp(390px, 42vw, 610px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-image img,
.shot img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.hero-image img {
  height: 100%;
  min-height: clamp(370px, 40vw, 590px);
  object-position: 70% 50%;
  transform: scale(1.06);
  transform-origin: center center;
}

.feature-strip,
.trust-explainer,
.workflow-section,
.home-highlights,
.section,
.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 54px);
  padding-right: clamp(18px, 4vw, 54px);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.feature-strip article,
.workflow-grid article,
.intro-grid article,
.shot,
.legal-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-strip article {
  min-height: 132px;
  padding: 20px;
}

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

.feature-strip strong {
  margin-bottom: 8px;
}

.feature-strip span,
.intro-grid p,
.trust-grid dd,
.workflow-grid p,
.point-grid p,
.legal-copy,
figcaption {
  color: var(--muted);
}

.trust-explainer {
  padding-top: clamp(46px, 6vw, 72px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.trust-explainer .section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.trust-grid article {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 46px rgba(25, 38, 42, 0.08);
}

.trust-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand);
}

.feature-code {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.trust-grid h3 {
  margin-bottom: 18px;
  font-size: 1.36rem;
}

.trust-grid dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.trust-grid dt {
  margin-bottom: 5px;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-grid dd {
  margin: 0;
  line-height: 1.52;
}

.workflow-section {
  padding-top: clamp(24px, 4vw, 44px);
  padding-bottom: clamp(44px, 6vw, 72px);
}

.workflow-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.workflow-grid article {
  min-height: 330px;
  padding: 26px;
  box-shadow: 0 18px 46px rgba(25, 38, 42, 0.08);
}

.workflow-grid h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.workflow-grid strong {
  display: block;
  margin: 18px 0 6px;
  color: var(--brand-dark);
}

.workflow-grid p {
  margin-bottom: 0;
  line-height: 1.55;
}

.home-highlights {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 36px;
}

.highlight-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 18px 46px rgba(25, 38, 42, 0.08);
}

.highlight-panel h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.dark-panel {
  background: #2d302d;
  color: #f7f3ed;
  border-color: #3b403c;
}

.dark-panel .eyebrow {
  color: #9ee5df;
}

.safeguard-list {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.safeguard-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.safeguard-list span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(158, 229, 223, 0.38);
  border-radius: 6px;
  color: #9ee5df;
  font-size: 0.68rem;
  font-weight: 900;
}

.safeguard-list p {
  margin: 0;
  color: #d7d1c8;
  font-size: 0.94rem;
  line-height: 1.35;
  font-weight: 700;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.point-grid div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(7, 154, 154, 0.2);
  border-radius: 8px;
  background: var(--brand-soft);
}

.point-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.point-grid p {
  margin-bottom: 0;
}

.section {
  padding-top: clamp(58px, 8vw, 96px);
  padding-bottom: clamp(58px, 8vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
}

.intro-grid {
  display: grid;
  gap: 14px;
}

.intro-grid article {
  padding: 24px;
}

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

.screenshot-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.shot {
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(25, 38, 42, 0.1);
}

.shot-large {
  grid-row: span 2;
}

.shot-wide {
  grid-column: span 2;
}

.shot img {
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
}

.shot-large img {
  aspect-ratio: 1.38 / 1;
}

.shot figcaption {
  padding: 16px 18px 18px;
}

.shot figcaption strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.free-band {
  max-width: none;
  margin: 0;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 6vw, 90px);
  background: var(--brand-dark);
  color: #fff;
}

.free-band p,
.free-band .eyebrow {
  color: #d4f3f1;
}

.download-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.download-heading p:last-child {
  margin-bottom: 0;
  font-size: 1.06rem;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
}

.download-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.download-card .primary-button {
  grid-column: 1 / -1;
  width: 100%;
}

.platform-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.windows-mark {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.download-card-copy h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.45rem;
}

.download-card-copy p {
  margin-bottom: 0;
}

.platform-label {
  margin-bottom: 4px !important;
  color: #9ee5df !important;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.light {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: none;
}

.legal {
  display: block;
  max-width: 1040px;
}

.legal-copy {
  padding: 26px;
  font-size: 1.02rem;
}

.full-policy {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
}

.full-policy h3 {
  margin: 30px 0 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.18rem;
}

.full-policy p,
.full-policy li {
  line-height: 1.62;
}

.full-policy ul,
.full-policy ol {
  margin: 0 0 18px;
  padding-left: 24px;
  color: var(--muted);
}

.full-policy li {
  margin-bottom: 7px;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.legal-copy a {
  color: var(--brand-dark);
  font-weight: 800;
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding-top: 30px;
  padding-bottom: 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a {
  color: var(--brand-dark);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header,
  .hero,
  .intro,
  .legal,
  .free-band {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .site-header nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-button {
    width: max-content;
  }

  .feature-strip,
  .trust-grid,
  .workflow-grid,
  .home-highlights,
  .screenshot-grid,
  .download-options {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    object-position: 70% 50%;
    transform-origin: center center;
  }

  .shot-large,
  .shot-wide {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-image {
    min-height: 300px;
  }

  .hero-image img {
    min-height: 280px;
    object-position: 70% 50%;
    transform: scale(1.02);
    transform-origin: center center;
  }

  h1 {
    font-size: 1.95rem;
  }

  .primary-button,
  .secondary-button,
  .header-button {
    width: 100%;
  }

  .site-header nav a {
    font-size: 0.9rem;
  }

  .feature-strip article {
    min-height: 0;
  }

  .workflow-grid article {
    min-height: 0;
  }

  .trust-grid article {
    min-height: 0;
  }

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

  .point-grid div {
    min-height: 0;
  }
}
