:root {
  --ink: #070b13; /* Deep space navy background */
  --ink-soft: #0e1626; /* Card space background */
  --paper: #f4f6f8;
  --white: #ffffff;
  --blue: #1b75bc; /* Logo primary blue */
  --blue-bright: #3ea6f2; /* Logo bright blue accent */
  --logo-blue: #1b75bc; /* Logo sky blue arc color */
  --blue-soft: #e2effa; /* Soft blue wash */
  --muted: #8d8d8d; /* Ayro gray */
  --line: rgba(255, 255, 255, 0.08); /* Modern glassy border */
  --line-dark: rgba(7, 11, 19, 0.08); /* Modern dark border */
  --green: #00d084;
  --red: #ff5b53;
  --gradient-primary: linear-gradient(135deg, #0f4c8a 0%, #1b75bc 100%);
  --gradient-sunset: linear-gradient(-120deg, #ff6b6b 0%, #662d8c 100%); /* Ayro home main slider feel */
  --display: "Catamaran", sans-serif;
  --body: "Inter", sans-serif;
  --header-height: 88px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image: 
    linear-gradient(to right, rgba(27, 117, 188, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(27, 117, 188, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

body.lightbox-open { overflow: hidden; }

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

button, a { -webkit-tap-highlight-color: transparent; }

img { display: block; max-width: 100%; height: auto; }
/* Preloader styling */
.preloader-wrap {
  position: fixed;
  inset: 0;
  background-color: var(--ink);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.preloader-wrap.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
}

.gradient-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--blue-bright);
  border-bottom-color: var(--blue);
  animation: preloader-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes preloader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(24px, 4vw, 72px);
  color: #1e293b; /* Dark text color matching light theme */
  border-bottom: none;
  background: transparent;
  transition: min-height .4s cubic-bezier(0.2, 0.8, 0.2, 1), background .4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color .4s;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(7, 11, 19, 0.05);
  border-bottom: 1px solid rgba(7, 11, 19, 0.04);
}

.header-logo-group {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand { display: flex; align-items: center; width: 112px; height: 42px; filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.06)); }
.brand img { width: 100%; height: 100%; object-fit: contain; }

.brand-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a3b70; /* Dark blue matching logo */
  font: 700 11px/1 var(--display);
  letter-spacing: .15em;
  text-transform: uppercase;
  user-select: none;
}

.taper-line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background-color: #1a3b70;
}

.taper-line.left {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.taper-line.right {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media (max-width: 1024px) {
  .taper-line {
    width: 32px;
  }
  .brand-subtitle {
    font-size: 10px;
    letter-spacing: 0.1em;
    gap: 8px;
  }
}

.site-nav { display: flex; gap: 48px; height: 100%; align-items: center; }

.nav-link {
  position: relative;
  padding: 12px 0;
  font: 700 12px/1 var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(30, 41, 59, 0.7); /* Dark grey text */
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(0.2, 1, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  justify-self: end;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 12px 24px;
  font: 700 12px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(30, 41, 59, 0.25);
  border-radius: 4px;
  background: transparent;
  color: #1e293b;
  transition: all .3s cubic-bezier(0.2, 1, 0.2, 1);
  box-shadow: 0 4px 15px rgba(7, 11, 19, 0.02);
}

.header-cta:hover { 
  color: var(--white); 
  border-color: transparent;
  background: var(--gradient-primary); 
  box-shadow: 0 8px 25px rgba(27, 117, 188, 0.25);
  transform: translateY(-2px);
}

.about-section { background: var(--paper); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  min-height: 100svh;
  padding: calc(var(--header-height) + 36px) clamp(24px, 5vw, 86px) 54px;
  color: #1e293b; /* Dark slate text */
  background-image: url('https://ik.imagekit.io/ma5ibe8mg/E2DM2/HeroImage.png');
  background-repeat: no-repeat;
  background-position: left center; /* Align left to keep mockup on the right on tall screens */
  background-size: cover;
  background-color: #f3f7fd; /* Matches the left/bottom of the image */
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 11, 19, 0.05), transparent);
}

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

/* The hero is revealed only after the preloader starts yielding the page. */
.js .hero-intro > *,
.js .hero-meta {
  --hero-x: 0px;
  --hero-y: 32px;
  opacity: 0;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(.985);
  backface-visibility: hidden;
}

.js .hero-intro > .eyebrow { --hero-x: -24px; --hero-y: 0px; }
.js .hero-intro > h1 { --hero-y: 44px; }

.js .hero.is-ready .hero-intro > *,
.js .hero.is-ready .hero-meta {
  animation: hero-enter .95s cubic-bezier(.16, 1, .3, 1) both;
}

.js .hero.is-ready .hero-intro > :nth-child(1) { animation-delay: .04s; }
.js .hero.is-ready .hero-intro > :nth-child(2) { animation-delay: .13s; }
.js .hero.is-ready .hero-intro > :nth-child(3) { animation-delay: .23s; }
.js .hero.is-ready .hero-intro > :nth-child(4) { animation-delay: .33s; }
.js .hero.is-ready .hero-meta { animation-delay: .43s; }

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue);
  font: 700 10px/1.2 var(--display);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow > span { width: 28px; height: 2px; background: var(--gradient-primary); }
.eyebrow-dark { color: var(--muted); }

h1, h2, h3, blockquote { margin-top: 0; font-family: var(--display); }

h1 {
  margin-bottom: 22px;
  font-size: clamp(43px, 5vw, 61px); /* Scaled down 10% */
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: #0c1b33; /* Dark navy heading */
}

h1 em, h2 em { 
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal; 
}

.hero-lede {
  max-width: 468px;
  margin: 0 0 32px;
  color: #475569; /* Slate gray lede */
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions { display: flex; align-items: center; gap: 28px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 4px;
  font: 700 11px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .3s cubic-bezier(0.2, 1, 0.2, 1);
}

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

.button-primary { 
  color: var(--white); 
  background: var(--gradient-primary); 
  box-shadow: 0 15px 35px rgba(27, 117, 188, 0.25); 
}

.button-primary:hover { 
  box-shadow: 0 20px 45px rgba(27, 117, 188, 0.4); 
}

.text-link {
  padding: 8px 0;
  color: #334155;
  font: 700 11px/1 var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(7, 11, 19, 0.12);
  transition: all 0.3s;
}

.text-link:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.text-link span { margin-left: 9px; color: var(--blue); transition: transform 0.3s; display: inline-block; }
.text-link:hover span { transform: translateY(3px); }

.hero-meta { 
  position: absolute; 
  bottom: 54px; 
  left: clamp(24px, 5vw, 86px); 
  z-index: 3; 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px 25px; 
}
.hero-meta span { position: relative; padding-left: 16px; color: #5a6e85; font-size: 10px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }
.hero-meta span::before { content: ""; position: absolute; left: 0; top: .45em; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 3px rgba(27, 117, 188, 0.15); }

.shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

.process {
  padding-top: clamp(110px, 8vw, 130px);
  padding-bottom: clamp(90px, 10vw, 160px);
  background: var(--paper);
}
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; column-gap: 60px; align-items: end; margin-bottom: 60px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .selection-copy h2, .download-content h2 { margin-bottom: 0; font-size: clamp(34px, 4.5vw, 60px); font-weight: 800; line-height: 1.05; letter-spacing: -.04em; text-transform: uppercase; }
.section-heading > p:last-child { max-width: 400px; margin: 0 0 6px; color: var(--muted); font-size: 15px; line-height: 1.65; font-weight: 300; }

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

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid rgba(7, 11, 19, 0.05);
  border-radius: 6px;
  padding: 36px 28px;
  min-height: auto;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 30px rgba(7, 11, 19, 0.02);
  overflow: hidden;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 117, 188, 0.15);
  box-shadow: 0 20px 40px rgba(27, 117, 188, 0.08);
}

.step-number {
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: rgba(27, 117, 188, 0.05);
  transition: color 0.3s;
}

.step:hover .step-number {
  color: rgba(27, 117, 188, 0.12);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--blue);
  background: rgba(27, 117, 188, 0.05);
  border-radius: 50%;
  transition: all 0.3s;
}

.step:hover .step-icon {
  color: var(--white);
  background: var(--gradient-primary);
  transform: scale(1.05);
}

.step-icon svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { margin-top: 0; margin-bottom: 10px; font-size: 20px; font-weight: 800; letter-spacing: -.03em; }
.step p { max-width: 100%; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.step-arrow { display: none; }

.selection-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding: clamp(100px, 8vw, 120px) clamp(24px, 6vw, 96px) clamp(50px, 5.5vw, 90px);
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(62, 166, 242, 0.08), transparent 45%),
    var(--ink);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.selection-showcase .eyebrow,
.pro-showcase .eyebrow,
.download-content .eyebrow { color: var(--white); }
.selection-copy { max-width: 520px; }
.selection-copy h2 { margin-bottom: 18px; }
.selection-lede { margin: 0 0 28px; color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.6; font-weight: 300; }
.mode-key { display: grid; gap: 10px; }
.mode-key > div { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: center; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.06); }
.mode-key p { margin: 0; color: rgba(255,255,255,0.6); font-size: 12px; line-height: 1.45; }
.mode-key strong { display: block; margin-bottom: 2px; color: var(--white); font: 700 14px/1.2 var(--display); letter-spacing: 0.02em; }
.mode-swatch { display: grid; place-items: center; width: 34px; height: 34px; font-weight: 800; border-radius: 50%; font-size: 14px; }
.mode-required { color: var(--green); background: rgba(0, 208, 130, 0.08); border: 1px solid rgba(0, 208, 130, 0.3); }
.mode-exclude { color: var(--red); background: rgba(255, 91, 83, 0.08); border: 1px solid rgba(255, 91, 83, 0.3); }
.mode-swatch svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.selection-note { margin: 20px 0 0; padding-left: 14px; color: var(--white); font-size: 11px; line-height: 1.5; border-left: 2px solid var(--blue-bright); }

.selection-image-wrap { min-width: 0; }
.image-caption { display: flex; justify-content: space-between; margin-bottom: 14px; color: rgba(255,255,255,0.8); font: 700 10px/1.3 var(--display); letter-spacing: .12em; text-transform: uppercase; }
.image-button {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.image-button img { display: block; width: 100%; height: auto; transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.image-button:hover img { transform: scale(1.015); }
.expand-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  font-size: 16px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s, background-color 0.3s;
}
.image-button:hover .expand-icon {
  transform: scale(1.1) rotate(45deg);
  background-color: var(--blue-bright);
  color: var(--ink);
}

.pro-showcase {
  position: relative;
  padding-top: clamp(120px, 10vw, 150px);
  padding-bottom: clamp(100px, 8vw, 120px);
  padding-inline: clamp(40px, 10vw, 160px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 80%, rgba(27, 117, 188, 0.08), transparent 45%),
    var(--ink);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.pro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(240px, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.pro-image-wrap {
  width: 100%;
  position: relative;
  order: 2;
}

.pro-image-wrap .image-caption {
  max-width: 540px;
  margin-inline: auto;
}

.pro-image-card {
  position: relative;
  max-width: 540px;
  margin-inline: auto;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink-soft);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.pro-image-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.pro-image-card:hover {
  transform: scale(1.015);
}

.pro-image-card:hover img {
  transform: scale(1.015);
}

.pro-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 440px;
  order: 1;
}

.pro-copy h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pro-lede {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 22px;
  font-weight: 300;
}

.pro-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pro-features-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 10px 12px 10px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.pro-features-list li:hover {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.07);
  transform: translateX(3px);
}

.pro-feature-icon {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #55b8ff;
  border: 1px solid rgba(85, 184, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(27, 117, 188, 0.18), rgba(27, 117, 188, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  box-sizing: border-box;
}

.pro-feature-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pro-feature-icon-4k {
  color: #79c8ff;
  font: 800 11px/1 var(--display);
  letter-spacing: .04em;
}

.pro-features-list li strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.pro-features-list li > div > span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11.5px;
  line-height: 1.5;
}

.pro-pricing-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  max-width: 540px;
  margin-top: 24px;
  margin-inline: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-current {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--display);
  line-height: 1;
}

.price-current small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  vertical-align: .35em;
}

.price-original {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-top: 4px;
}

.price-badge {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--logo-blue);
  background: rgba(27, 117, 188, 0.15);
  padding: 3px 6px;
  border-radius: 3px;
  margin-top: 6px;
}

.pro-buy-button {
  min-height: 48px;
  padding: 0 28px;
  box-shadow: 0 15px 35px rgba(27, 117, 188, 0.25);
}

.pro-buy-button:hover {
  box-shadow: 0 20px 45px rgba(27, 117, 188, 0.4);
}

.pro-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 4px;
  font: 700 11px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: default;
  user-select: none;
}

.story {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
  padding-block: clamp(100px, 10vw, 160px);
  position: relative;
}
.story-mark {
  position: relative;
  padding: 8%;
  background: var(--white);
  border: 1px solid rgba(7, 11, 19, 0.05);
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(14,31,53,0.06);
  transition: transform 0.4s;
}
.story-mark:hover {
  transform: scale(1.02);
}
.story-mark::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: -1;
  width: 40%;
  height: 40%;
  border-right: 3px solid var(--logo-blue);
  border-bottom: 3px solid var(--logo-blue);
}
.story-mark img { mix-blend-mode: multiply; opacity: 0.95; border-radius: 4px; }
.story-copy blockquote {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.04em;
  color: var(--ink);
}
.story-copy blockquote::before {
  content: "“";
  color: var(--logo-blue);
  font-size: 80px;
  line-height: 0;
  display: inline-block;
  vertical-align: -30px;
  margin-right: 8px;
}
.story-copy > p:not(.eyebrow) { max-width: 650px; margin: 0 0 20px; color: var(--muted); font-size: 16px; line-height: 1.7; font-weight: 400; }
.signature { display: block; margin-top: 35px; color: var(--logo-blue); font: 800 13px/1 var(--display); letter-spacing: .08em; text-transform: uppercase; }

.download-section {
  position: relative;
  min-height: auto;
  padding: clamp(80px, 8vw, 110px) 24px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 107, 107, 0.12) 0%, rgba(102, 45, 140, 0.12) 30%, transparent 60%),
    var(--ink);
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.download-orbit {
  position: absolute;
  z-index: -1;
  width: min(850px, 80vw);
  height: min(850px, 80vw);
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255,255,255,.005), 0 0 0 200px rgba(255,255,255,.003);
}
.download-content { display: flex; flex-direction: column; align-items: center; max-width: 900px; margin: 0 auto; text-align: center; }
.download-logo { width: 140px; height: 90px; margin-bottom: 24px; object-fit: cover; object-position: center; mix-blend-mode: screen; filter: drop-shadow(0 0 15px rgba(27, 117, 188, 0.2)); }
.download-content .eyebrow { justify-content: center; }
.download-content h2 { margin-bottom: 20px; font-size: clamp(38px, 5.5vw, 68px); }
.download-content > p:not(.eyebrow):not(.download-note) { max-width: 600px; margin: 0 auto 32px; color: rgba(255, 255, 255, 0.65); font-size: 17px; line-height: 1.65; font-weight: 300; }

.button-download {
  min-width: 320px;
  min-height: 72px;
  padding: 0 28px;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 1px solid transparent;
}
.button-download:hover {
  background: var(--ink-soft);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.button-download > span:nth-child(2) { display: flex; flex-direction: column; gap: 4px; flex: 1; font-size: 19px; font-family: var(--display); font-weight: 800; }
.button-download small { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.button-download b { color: var(--blue); font-size: 22px; transition: transform 0.3s; }
.button-download:hover b { color: var(--blue-bright); transform: translateY(4px); }
.windows-mark { display: grid; grid-template-columns: 10px 10px; gap: 2px; transform: skewY(-5deg); margin-right: 6px; }
.windows-mark i { width: 10px; height: 10px; background: var(--blue); transition: background-color 0.3s; }
.button-download:hover .windows-mark i { background: var(--blue-bright); }
.download-note { margin: 20px 0 0; color: rgba(255, 255, 255, 0.35); font-size: 11px; letter-spacing: .05em; }

footer {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 80px max(24px, calc((100% - 1200px) / 2)) 40px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  text-align: left;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: var(--display);
}

.col-brand .footer-brand {
  display: inline-block;
  color: var(--white);
  font: 800 24px/1 var(--display);
  letter-spacing: -.03em;
  margin-bottom: 18px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.social-icon {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--blue-bright);
}

.footer-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.5;
}


.footer-bottom {
  display: none;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.lightbox {
  max-width: min(94vw, 1500px);
  max-height: 80vh;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  overflow: visible;
  cursor: zoom-out;
}

.lightbox::backdrop {
  background: rgba(3,9,17,0.9);
  backdrop-filter: blur(8px);
}

.lightbox img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0,0,0,.5);
  cursor: zoom-out;
  margin: 0 auto;
}
.lightbox button { position: absolute; right: -8px; top: -54px; width: 42px; height: 42px; cursor: pointer; color: var(--white); font-size: 31px; font-weight: 300; line-height: 1; background: transparent; border: 0; transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.lightbox button:hover { transform: scale(1.15) rotate(90deg); color: var(--blue-bright); }

.toast { position: fixed; left: 50%; bottom: 28px; z-index: 200; padding: 14px 20px; color: var(--ink); font-size: 13px; font-weight: 600; background: var(--white); box-shadow: 0 15px 45px rgba(0,0,0,.25); transform: translate(-50%, 150%); opacity: 0; transition: transform .3s ease, opacity .3s ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* Composited scroll reveals: opacity and transform avoid layout/paint churn. */
.js .reveal {
  --reveal-x: 0px;
  --reveal-y: 44px;
  --reveal-scale: 1;
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity .9s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay),
    transform .9s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.js .reveal-left { --reveal-x: -56px; --reveal-y: 0px; }
.js .reveal-right { --reveal-x: 56px; --reveal-y: 0px; }
.js .reveal-scale { --reveal-y: 22px; --reveal-scale: .965; }
.js .reveal-delay { --reveal-delay: 140ms; }
.js .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }

.steps-list .step:nth-child(2),
.footer-grid .footer-col:nth-child(2) { --reveal-delay: 100ms; }
.steps-list .step:nth-child(3),
.footer-grid .footer-col:nth-child(3) { --reveal-delay: 200ms; }
.js .footer-bottom { --reveal-delay: 180ms; }

/* Preserve the existing tactile hover motion once a reveal has completed. */
.js .reveal.is-visible.step:hover { transform: translate3d(0, -8px, 0); }
.js .reveal.is-visible.story-mark:hover { transform: scale(1.02); }

@media (max-width: 1150px) {
  .hero { 
    grid-template-columns: 1fr; 
    background-position: left center; 
    padding-top: 155px; 
    padding-bottom: 130px; 
  }
  .hero-copy { max-width: 480px; }
  .hero-meta { max-width: 480px; }
  .selection-showcase { grid-template-columns: 1fr; }
  .selection-copy { max-width: 700px; }
  .selection-image-wrap { width: 100%; }
  .pro-grid { grid-template-columns: 1fr; }
  .pro-copy { max-width: 700px; order: 1; }
  .pro-image-wrap { order: 2; }
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 780px) {
  :root { --header-height: 72px; }
  .site-header { padding-inline: 20px; }
  .brand { width: 98px; height: 36px; }
  .site-nav { gap: 24px; }
  .nav-link { font-size: 11px; }
  .hero { padding: 132px 24px 90px; background-position: left center; }
  h1 { font-size: clamp(48px, 14vw, 76px); }
  .hero-copy .hero-lede { font-size: 13px; line-height: 1.5; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-meta { 
    position: static; 
    margin-top: 48px; 
    flex-direction: column; 
    max-width: none; 
  }
  .shell { width: min(100% - 40px, 1240px); }
  .section-heading { display: block; }
  .section-heading h2 { margin-bottom: 26px; }
  
  .steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step {
    padding: 32px 24px;
  }
  
  .step-arrow { display: none; }
  .selection-showcase { padding-inline: 20px; }
  .image-caption { align-items: flex-end; gap: 15px; }
  .image-caption span:last-child { text-align: right; }
  .story { grid-template-columns: 1fr; }
  .story-mark { width: min(85%, 460px); margin: 0 auto; }
  .download-section { padding-inline: 20px; }
  .button-download { min-width: min(310px, 100%); }
  footer { padding-block: 28px; }
  footer p:first-of-type { display: none; }
  footer p:last-child { text-align: right; }
}

@media (max-width: 600px) {
  .header-logo-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .taper-line {
    display: none;
  }
  .brand-subtitle {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .site-nav { gap: 17px; }
  .process { padding-block: 100px; }
  .step { padding-block: 32px; }
  .section-heading h2, .selection-copy h2 { font-size: 45px; }
  .selection-showcase { padding-block: 95px; }
  .pro-showcase { padding-block: 95px; }
  .story { padding-block: 105px; }
  .story-copy blockquote { font-size: 36px; }
  .download-content h2 { font-size: 47px; }
}

@media (max-height: 560px) {
  :root {
    --header-height: 60px;
  }
  .site-header {
    padding-right: 54px !important;
  }
  .hero {
    padding-top: calc(var(--header-height) + 20px) !important;
    padding-bottom: 40px !important;
    height: auto !important;
    min-height: 100svh !important;
  }
  .hero-copy {
    max-width: 320px !important;
  }
  .hero-copy h1 {
    font-size: clamp(28px, 10vh, 38px) !important;
    margin-bottom: 10px !important;
    line-height: 1.05 !important;
  }
  .hero-copy .hero-lede {
    font-size: 12px !important;
    margin-bottom: 16px !important;
    line-height: 1.5 !important;
  }
  .hero-actions {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }
  .hero-meta {
    position: static !important;
    margin-top: 24px !important;
    max-width: none !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-enabled) { scroll-behavior: auto; }
  html:not(.motion-enabled) *,
  html:not(.motion-enabled) *::before,
  html:not(.motion-enabled) *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  html:not(.motion-enabled).js .hero-intro > *,
  html:not(.motion-enabled).js .hero-meta,
  html:not(.motion-enabled).js .reveal {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}
