:root {
  --ink: #f5f7fb;
  --muted: #96a5b8;
  --night: #09111b;
  --night-2: #101b29;
  --panel: #121f2e;
  --line: rgba(255,255,255,.12);
  --lime: #b8ef72;
  --lime-dark: #1d2d11;
  --blue: #79a7ff;
  --warm: #f4c680;
  --shadow: 0 34px 100px rgba(0,0,0,.42);
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% -10%,rgba(78,113,179,.21),transparent 27%),
    var(--night);
  color: var(--ink);
  font-family: Inter,"Segoe UI",system-ui,sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

button,
input {
  font: inherit;
}

.site-header {
  width: min(1420px,calc(100% - 36px));
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--lime);
  color: #111a0c;
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
}

.site-header nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
}

.site-header nav a,
.text-link,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.site-header nav a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--lime);
  color: #111a0c;
  text-decoration: none;
  font-weight: 900;
  transition: transform .16s ease,box-shadow .16s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(184,239,114,.16);
}

.button.small {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 11px;
}

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

.hero {
  width: min(1420px,calc(100% - 36px));
  min-height: 760px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(38px,7vw,110px);
  align-items: center;
  margin: 0 auto;
  padding: 70px 0 95px;
}

.eyebrow {
  color: var(--lime);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .15em;
}

.hero h1,
.section-heading h2,
.security-copy h2,
.final-cta h2,
.legal-hero h1 {
  letter-spacing: -.055em;
}

.hero h1 {
  max-width: 740px;
  margin: 18px 0 24px;
  font-size: clamp(52px,6.5vw,96px);
  line-height: .93;
}

.hero-copy > p {
  max-width: 720px;
  color: #aebccc;
  font-size: clamp(16px,1.5vw,20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 29px 0 24px;
}

.quiet-link {
  color: var(--ink);
  text-underline-offset: 5px;
  font-weight: 800;
}

.trial-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trial-line span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
}

.hero-product {
  position: relative;
  padding: 30px 0 45px;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 23px;
  background: #0e1926;
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

.window-bar {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 17px;
  border-bottom: 1px solid var(--line);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
}

.window-brand span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--lime);
  color: #111a0c;
}

.window-secure {
  margin-left: auto;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
}

.window-body {
  min-height: 490px;
  display: grid;
  grid-template-columns: 190px 1fr;
}

.window-body aside {
  padding: 20px 13px;
  border-right: 1px solid var(--line);
  background: #0b1521;
}

.window-body small,
.mock-heading small,
.selection-card small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .08em;
}

.gallery-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 9px;
}

.gallery-tab span {
  margin-left: auto;
}

.gallery-tab.active {
  background: #19283a;
  color: var(--ink);
}

.window-body > section {
  padding: 22px;
}

.mock-heading {
  display: flex;
  align-items: flex-end;
  margin-bottom: 18px;
}

.mock-heading div {
  display: grid;
  gap: 4px;
}

.mock-heading strong {
  font-size: 23px;
}

.mock-heading > span {
  margin-left: auto;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 8px;
}

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

.photo-grid i {
  min-height: 125px;
  border-radius: 8px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.05),transparent),
    radial-gradient(circle at 65% 25%,#b5a17f,transparent 20%),
    linear-gradient(145deg,#202d3d,#65748a);
}

.photo-grid i:nth-child(2),
.photo-grid i:nth-child(5) {
  background:
    radial-gradient(circle at 38% 33%,#e0b9a3,transparent 18%),
    linear-gradient(135deg,#5f3640,#c98f67);
}

.photo-grid i:nth-child(3),
.photo-grid i:nth-child(4) {
  background:
    radial-gradient(circle at 62% 30%,#f1cc9f,transparent 16%),
    linear-gradient(145deg,#273b36,#8b7d4e);
}

.selection-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #142233;
}

.selection-card div {
  display: grid;
  gap: 3px;
}

.selection-card span {
  margin-left: auto;
  color: var(--lime);
  font-size: 9px;
  font-weight: 850;
}

.floating-proof {
  position: absolute;
  min-width: 150px;
  display: grid;
  gap: 2px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 13px;
  background: rgba(18,31,46,.93);
  box-shadow: 0 20px 55px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
}

.floating-proof span {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.floating-proof strong {
  font-size: 13px;
}

.proof-one { left: -35px; bottom: 6px; }
.proof-two { right: -15px; top: 2px; }

.trust-strip {
  width: min(1420px,calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(5,1fr);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.trust-strip span:last-child { border-right: 0; }

.section {
  width: min(1420px,calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(90px,11vw,170px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.security-copy h2,
.final-cta h2 {
  margin: 13px 0 16px;
  font-size: clamp(42px,5.5vw,78px);
  line-height: .97;
}

.section-heading p,
.security-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-grid article {
  min-height: 330px;
  padding: 25px 23px;
  border-right: 1px solid var(--line);
}

.workflow-grid article:last-child { border-right: 0; }

.step-number {
  color: var(--lime);
  font-family: ui-monospace,SFMono-Regular,Consolas,monospace;
  font-size: 11px;
}

.workflow-grid h3 {
  margin: 115px 0 12px;
  font-size: 23px;
  letter-spacing: -.025em;
}

.workflow-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.security-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px,8vw,140px);
  align-items: start;
}

.security-copy {
  position: sticky;
  top: 120px;
}

.security-list {
  border-top: 1px solid var(--line);
}

.security-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 24px;
  padding: 27px 4px;
  border-bottom: 1px solid var(--line);
}

.security-list article > span {
  color: var(--lime);
  font-size: 10px;
}

.security-list strong {
  font-size: 22px;
}

.security-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.pricing-section {
  border-top: 1px solid var(--line);
}

.billing-toggle {
  width: fit-content;
  display: flex;
  gap: 5px;
  margin: 0 auto 25px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--night-2);
}

.billing-toggle button {
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  padding: 9px 13px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
}

.billing-toggle button.active {
  background: var(--lime);
  color: #111a0c;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}

.price-card {
  min-height: 425px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.price-card.featured {
  border-color: rgba(184,239,114,.55);
  background:
    linear-gradient(180deg,rgba(184,239,114,.08),transparent 50%),
    var(--panel);
}

.popular-label {
  align-self: flex-start;
  margin-bottom: 9px;
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--lime-dark);
  color: var(--lime);
  font-size: 8px;
  font-weight: 950;
}

.plan-storage {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.plan-price {
  margin-top: 48px;
  font-size: clamp(36px,4vw,56px);
  letter-spacing: -.055em;
}

.plan-cycle {
  color: var(--muted);
  font-size: 9px;
}

.price-card p {
  margin: 28px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.trial-card {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 14px;
  padding: 26px 29px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--night-2);
}

.trial-card h3 {
  margin: 5px 0;
  font-size: 28px;
}

.trial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.trial-card .button { margin-left: auto; }

.faq-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(40px,8vw,130px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 22px 2px;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.faq-list p {
  max-width: 700px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.final-cta {
  width: min(1420px,calc(100% - 36px));
  margin: 0 auto 40px;
  padding: clamp(55px,8vw,100px);
  border: 1px solid rgba(184,239,114,.35);
  border-radius: 25px;
  background:
    radial-gradient(circle at 80% 20%,rgba(184,239,114,.14),transparent 28%),
    var(--panel);
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

footer {
  width: min(1420px,calc(100% - 36px));
  min-height: 150px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

footer > small {
  color: var(--muted);
  font-size: 9px;
}

.legal-page .site-header {
  margin-bottom: 0;
}

.legal-shell {
  width: min(980px,calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0 130px;
}

.legal-hero {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 13px 0 14px;
  font-size: clamp(48px,8vw,88px);
  line-height: .95;
}

.legal-hero p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.legal-content {
  padding-top: 22px;
}

.legal-content section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 25px;
}

.legal-content a {
  color: var(--lime);
}

.companion-hero {
  width: min(1420px,calc(100% - 36px));
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr .65fr;
  gap: clamp(36px,7vw,110px);
  align-items: center;
  margin: 0 auto;
  padding: 80px 0 100px;
}

.companion-hero h1 {
  max-width: 850px;
  margin: 17px 0 24px;
  font-size: clamp(50px,6.6vw,94px);
  line-height: .94;
  letter-spacing: -.055em;
}

.companion-hero > div > p {
  max-width: 760px;
  color: #aebccc;
  font-size: clamp(16px,1.5vw,20px);
  line-height: 1.7;
}

.activation-lock-card,
.edition-card,
.checksum-card,
.requirements-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--night-2);
}

.activation-lock-card {
  padding: clamp(25px,4vw,44px);
  box-shadow: var(--shadow);
}

.lock-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 29px;
  border-radius: 21px;
  background: var(--lime);
  color: #111a0c;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: .08em;
}

.activation-lock-card h2 {
  margin: 9px 0 15px;
  font-size: clamp(28px,3vw,42px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.activation-lock-card p,
.companion-section .section-heading p,
.companion-download-section > div > p {
  color: var(--muted);
  line-height: 1.7;
}

.activation-lock-card .button {
  width: 100%;
  margin-top: 12px;
}

.companion-section {
  padding-top: 105px;
  padding-bottom: 105px;
}

.edition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 42px;
}

.edition-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px,4vw,42px);
}

.featured-edition {
  border-color: rgba(184,239,114,.45);
  background:
    radial-gradient(circle at 85% 0,rgba(184,239,114,.12),transparent 35%),
    var(--night-2);
}

.edition-label,
.checksum-card > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
}

.edition-card h3 {
  margin: 11px 0 19px;
  font-size: clamp(28px,3vw,42px);
  letter-spacing: -.045em;
}

.edition-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 35px;
  padding-left: 20px;
  color: var(--muted);
}

.edition-card .button {
  width: 100%;
  margin-top: auto;
}

.activation-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.activation-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.activation-steps article {
  min-height: 290px;
  padding: clamp(23px,3vw,38px);
  border-right: 1px solid var(--line);
  background: var(--night-2);
}

.activation-steps article:last-child {
  border-right: 0;
}

.activation-steps article > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
}

.activation-steps h3 {
  margin: 75px 0 12px;
  font-size: 24px;
  letter-spacing: -.035em;
}

.activation-steps p,
.activation-note,
.checksum-card p,
.requirements-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.activation-note {
  display: flex;
  gap: 16px;
  margin-top: 15px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.activation-note strong {
  color: var(--ink);
  white-space: nowrap;
}

.companion-download-section {
  width: min(1420px,calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(28px,6vw,88px);
  align-items: center;
  margin: 0 auto;
  padding: 110px 0;
}

.companion-download-section h2 {
  margin: 12px 0 16px;
  font-size: clamp(38px,5vw,70px);
  line-height: .98;
  letter-spacing: -.05em;
}

.companion-download-button {
  margin: 16px 18px 8px 0;
}

.checksum-card {
  padding: clamp(24px,4vw,38px);
}

.checksum-card code {
  display: block;
  overflow-wrap: anywhere;
  margin: 13px 0;
  padding: 14px;
  border: 1px dashed rgba(184,239,114,.55);
  border-radius: 11px;
  background: var(--night);
  color: var(--lime);
  font-size: 13px;
  line-height: 1.65;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-top: 36px;
}

.requirements-grid article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
}

.requirements-grid strong {
  font-size: 17px;
}

@media (max-width: 1120px) {
  .site-header nav { display: none; }

  .site-header .header-actions {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

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

  .hero-product {
    width: min(860px,100%);
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .workflow-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .companion-hero,
  .companion-download-section {
    grid-template-columns: 1fr;
  }

  .activation-lock-card,
  .checksum-card {
    width: min(780px,100%);
  }

  .requirements-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .workflow-grid article:nth-child(2) { border-right: 0; }
  .workflow-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .header-actions .text-link { display: none; }

  .hero {
    width: min(100% - 24px,1420px);
    min-height: auto;
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(48px,15vw,72px);
  }

  .hero-actions,
  .trial-card,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-body aside { display: none; }

  .photo-grid i { min-height: 90px; }

  .floating-proof { display: none; }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip span {
    border-bottom: 1px solid var(--line);
  }

  .section,
  .final-cta {
    width: min(100% - 24px,1420px);
  }

  .workflow-grid,
  .pricing-grid,
  .security-section,
  .faq-section,
  .edition-grid,
  .activation-steps,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .companion-hero,
  .companion-download-section {
    width: min(100% - 24px,1420px);
  }

  .companion-hero {
    min-height: auto;
    padding: 64px 0 82px;
  }

  .companion-hero h1 {
    font-size: clamp(47px,14vw,72px);
  }

  .activation-steps article {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .activation-steps article:last-child {
    border-bottom: 0;
  }

  .activation-note {
    flex-direction: column;
  }

  .companion-download-button {
    width: 100%;
    margin-right: 0;
  }

  .workflow-grid article {
    min-height: 265px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-grid article:last-child { border-bottom: 0; }

  .workflow-grid h3 { margin-top: 80px; }

  .security-copy { position: static; }

  .trial-card .button { margin-left: 0; }

  .footer-links {
    flex-wrap: wrap;
    margin-left: 0;
  }

  footer { padding: 35px 0; }
}
