:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --paper: #f8fafc;
  --paper-strong: #e2e8f0;
  --surface: #ffffff;
  --line: rgba(15, 23, 42, 0.12);
  --forest: #0f766e;
  --moss: #22c55e;
  --gold: #f59e0b;
  --blue: #2563eb;
  --electric: #38bdf8;
  --terracotta: #0ea5e9;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(15, 118, 110, 0.14), transparent 26rem),
    linear-gradient(180deg, var(--paper), #fff 58%);
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

address {
  font-style: normal;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #0f172a, #0f766e);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.45rem;
}

.brand-text {
  font-size: 1.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
  padding: 0.65rem 0.95rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(14, 165, 233, 0.12);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.nav-toggle-line::before {
  transform: translateY(-7px);
}

.nav-toggle-line::after {
  transform: translateY(5px);
}

.hero {
  padding: 92px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 3.6rem;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--ink);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2.85rem, 5vw, 4.95rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero-lede,
.page-hero p,
.split-intro > p,
.stacked-copy {
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.hero-lede {
  max-width: 680px;
  margin: 1.6rem 0 0;
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.85rem;
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions,
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.85rem 1.15rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0b1220 0%, #1d4ed8 58%, var(--electric) 100%);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #020617 0%, #2563eb 56%, #7dd3fc 100%);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.hero-panel {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 46px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 245, 249, 0.72)),
    radial-gradient(circle at 28% 28%, rgba(14, 165, 233, 0.26), transparent 12rem),
    radial-gradient(circle at 76% 74%, rgba(15, 118, 110, 0.2), transparent 12rem);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  inset: 3rem;
  border: 1px dashed rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  content: "";
}

.orbit-core,
.orbit-card {
  position: absolute;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.orbit-core {
  left: 50%;
  top: 50%;
  width: min(260px, calc(100% - 80px));
  padding: 1.45rem;
  border-radius: 30px;
  transform: translate(-50%, -50%);
}

.orbit-core span,
.orbit-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orbit-core strong,
.orbit-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.1rem;
  line-height: 1.25;
}

.orbit-card {
  width: 190px;
  padding: 1rem;
  border-radius: 22px;
}

.orbit-card-one {
  left: 2rem;
  top: 4rem;
}

.orbit-card-two {
  right: 1.4rem;
  top: 8.8rem;
}

.orbit-card-three {
  left: 4rem;
  bottom: 4rem;
}

.section {
  padding: 82px 0;
}

.section-tint {
  background:
    radial-gradient(circle at 82% 18%, rgba(14, 165, 233, 0.22), transparent 28rem),
    linear-gradient(135deg, #0f172a, #164e63 58%, #0f766e);
  color: #fff;
}

.section-tint p,
.section-tint .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.about-standard-section .split-intro {
  align-items: start;
  margin-bottom: 0;
}

.about-standard-section .stacked-copy p:first-child {
  margin-top: 0;
}

h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

h3 {
  font-size: 1.55rem;
}

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

.product-card,
.story-card,
.contact-card,
.product-row,
.legacy-notice,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.product-card {
  min-height: 360px;
  padding: 1.25rem;
}

.product-card-featured {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 249, 0.86)),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.18), transparent 11rem);
}

.product-card p,
.story-card p,
.contact-card p,
.product-row p {
  color: var(--ink-soft);
}

.product-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 1.25rem;
  border-radius: 22px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.product-icon::before,
.product-icon::after {
  position: absolute;
  content: "";
}

.map-icon {
  background: linear-gradient(145deg, #0f766e, #2563eb);
}

.map-icon::before {
  inset: 14px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
}

.map-icon::after {
  left: 33px;
  top: 17px;
  width: 10px;
  height: 32px;
  border-radius: 999px;
  background: #f8fafc;
  transform: rotate(35deg);
}

.fax-icon {
  background: linear-gradient(145deg, #1e293b, #0ea5e9);
}

.fax-icon::before {
  left: 17px;
  top: 15px;
  width: 38px;
  height: 46px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.fax-icon::after {
  left: 24px;
  top: 27px;
  width: 24px;
  height: 3px;
  box-shadow: 0 9px 0 rgba(20, 33, 30, 0.38), 0 18px 0 rgba(20, 33, 30, 0.28);
  background: rgba(20, 33, 30, 0.48);
}

.invoice-icon {
  background: linear-gradient(145deg, #1d4ed8, #f59e0b);
}

.invoice-icon::before {
  left: 18px;
  top: 13px;
  width: 38px;
  height: 48px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.9);
}

.invoice-icon::after {
  left: 26px;
  top: 26px;
  width: 22px;
  height: 3px;
  box-shadow: 0 9px 0 rgba(20, 33, 30, 0.32), 0 18px 0 rgba(20, 33, 30, 0.22);
  background: rgba(20, 33, 30, 0.42);
}

.pollen-icon {
  background: linear-gradient(145deg, #047857, #22c55e);
}

.pollen-icon::before {
  left: 18px;
  top: 22px;
  width: 38px;
  height: 25px;
  border-radius: 60% 40% 60% 40%;
  background: rgba(255, 255, 255, 0.82);
  transform: rotate(-22deg);
}

.pollen-icon::after {
  left: 35px;
  top: 16px;
  width: 4px;
  height: 42px;
  border-radius: 999px;
  background: rgba(20, 33, 30, 0.36);
  transform: rotate(28deg);
}

.text-link {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: " ->";
}

.feature-grid,
.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.feature-grid article {
  min-width: 0;
  padding: 1.65rem;
}

.feature-grid h2,
.story-card h2,
.contact-card h2 {
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.feature-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 2.4rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(1.2rem, 4vw, 2.5rem);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 86px 0 48px;
}

.page-hero p {
  margin-top: 1.4rem;
}

.product-list {
  display: grid;
  gap: 1rem;
}

.product-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem;
}

.story-card,
.contact-card {
  padding: 1.45rem;
}

.contact-card-wide {
  grid-column: span 1;
}

.contact-grid-compact {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.legal-layout {
  max-width: 940px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.legacy-notice,
.legal-panel {
  padding: 1.25rem;
}

.legacy-notice {
  margin-bottom: 1rem;
  border-color: rgba(14, 165, 233, 0.24);
  background: rgba(240, 249, 255, 0.94);
}

.legacy-notice strong {
  display: block;
  margin-bottom: 0.35rem;
}

.guide-page .page-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(14, 165, 233, 0.18), transparent 24rem),
    linear-gradient(180deg, #f8fafc, #fff);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.guide-nav-card,
.guide-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.guide-nav-card {
  position: sticky;
  top: 104px;
  padding: 1.25rem;
}

.guide-nav-card nav {
  display: grid;
  gap: 0.55rem;
}

.guide-nav-card a,
.guide-card a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.guide-content {
  display: grid;
  gap: 1rem;
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.72fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.15rem, 3vw, 2rem);
  scroll-margin-top: 110px;
}

.guide-card-full {
  grid-template-columns: 1fr;
}

.guide-card h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
}

.guide-card p {
  color: var(--ink-soft);
}

.guide-steps,
.benefit-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}

.guide-steps li,
.benefit-list li {
  position: relative;
  min-height: 2.3rem;
  padding-left: 3rem;
  color: var(--ink-soft);
}

.guide-steps li::before,
.benefit-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0b1220, #2563eb);
  font-size: 0.84rem;
  font-weight: 800;
}

.guide-steps li {
  counter-increment: guide-step;
}

.guide-steps li::before {
  content: counter(guide-step);
}

.benefit-list li::before {
  width: 0.65rem;
  height: 0.65rem;
  margin: 0.65rem;
  background: var(--electric);
  content: "";
}

.guide-media {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.guide-media img {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.guide-media figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-support {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 2rem;
}

.footer-grid nav {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-grid a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.footer-small {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Product-studio redesign */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(14, 165, 233, 0.34), transparent 22rem),
    radial-gradient(circle at 86% 20%, rgba(20, 184, 166, 0.22), transparent 25rem),
    radial-gradient(circle at 48% 110%, rgba(245, 158, 11, 0.18), transparent 30rem),
    linear-gradient(135deg, #08111f 0%, #0f172a 48%, #102b3f 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
  content: "";
}

.hero .container {
  position: relative;
}

.hero-copy h1 {
  max-width: 760px;
  color: #fff;
  text-wrap: balance;
}

.hero .hero-lede {
  max-width: 660px;
  color: rgba(226, 232, 240, 0.86);
}

.hero .eyebrow {
  color: #67e8f9;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.08);
}

.proof-strip {
  display: grid;
  gap: 0.65rem;
  max-width: 760px;
  margin-top: 2rem;
}

.proof-strip span {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(241, 245, 249, 0.86);
  background: rgba(255, 255, 255, 0.07);
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.device-stage {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.device-stage::before {
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(520px, 95%);
  height: min(520px, 95%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(14, 165, 233, 0.28), transparent 58%),
    conic-gradient(from 140deg, rgba(14, 165, 233, 0.18), rgba(45, 212, 191, 0.26), rgba(245, 158, 11, 0.18), rgba(14, 165, 233, 0.18));
  filter: blur(3px);
  transform: translate(-50%, -50%);
  content: "";
  z-index: -1;
}

.phone-shot {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  transform-origin: center;
}

.phone-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-shot-main {
  left: 50%;
  top: 4%;
  width: min(360px, 64%);
  height: 540px;
  padding: 0.65rem;
  transform: translateX(-50%) rotate(1deg);
  z-index: 3;
}

.phone-shot-left {
  left: -1%;
  bottom: 8%;
  width: 230px;
  height: 310px;
  padding: 0.5rem;
  transform: rotate(-9deg);
  z-index: 2;
}

.phone-shot-right {
  right: -3%;
  bottom: 2%;
  width: 230px;
  height: 340px;
  padding: 0.5rem;
  transform: rotate(8deg);
  z-index: 2;
}

.studio-note {
  position: absolute;
  right: 3%;
  top: 8%;
  max-width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: #fff;
  background: rgba(8, 17, 31, 0.72);
  backdrop-filter: blur(16px);
  padding: 1rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  z-index: 4;
}

.studio-note span {
  display: block;
  color: #67e8f9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.studio-note strong {
  display: block;
  margin-top: 0.4rem;
  line-height: 1.25;
}

.product-showcase-section {
  background:
    radial-gradient(circle at 0 15%, rgba(14, 165, 233, 0.1), transparent 24rem),
    linear-gradient(180deg, #fff, #f8fafc);
}

.product-stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.56fr);
  gap: 1.35rem;
  min-height: 430px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 38px;
  overflow: hidden;
  padding: 1.5rem;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.1);
}

.product-story-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 390px;
}

.product-story-copy h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: #fff;
}

.product-story-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.product-story .card-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.product-story .text-link {
  color: #fff;
}

.product-story-media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: end center;
  min-height: 360px;
}

.product-story-media img {
  max-height: 390px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.24));
}

.wide-media img {
  width: min(100%, 370px);
  max-height: 320px;
  border-radius: 26px;
}

.petrix-story {
  background:
    radial-gradient(circle at 78% 20%, rgba(56, 189, 248, 0.36), transparent 18rem),
    linear-gradient(135deg, #052e2b, #0f766e 55%, #155e75);
}

.fax-story {
  background:
    radial-gradient(circle at 80% 15%, rgba(191, 219, 254, 0.34), transparent 18rem),
    linear-gradient(135deg, #111827, #1d4ed8 62%, #38bdf8);
}

.invoice-story {
  background:
    radial-gradient(circle at 78% 24%, rgba(253, 186, 116, 0.34), transparent 18rem),
    linear-gradient(135deg, #172554, #4f46e5 52%, #f97316);
}

.pollen-story {
  background:
    radial-gradient(circle at 78% 22%, rgba(187, 247, 208, 0.36), transparent 18rem),
    linear-gradient(135deg, #052e16, #15803d 58%, #84cc16);
}

.placeholder-bloom {
  position: relative;
  min-height: 330px;
}

.placeholder-bloom span {
  position: absolute;
  display: block;
  border-radius: 999px 999px 999px 120px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.placeholder-bloom span:nth-child(1) {
  right: 22%;
  top: 12%;
  width: 120px;
  height: 210px;
  transform: rotate(24deg);
}

.placeholder-bloom span:nth-child(2) {
  right: 38%;
  top: 24%;
  width: 115px;
  height: 195px;
  transform: rotate(-32deg);
}

.placeholder-bloom span:nth-child(3) {
  right: 10%;
  top: 34%;
  width: 92px;
  height: 150px;
  transform: rotate(58deg);
}

.placeholder-bloom span:nth-child(4) {
  right: 29%;
  bottom: 4%;
  width: 5px;
  height: 230px;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(17deg);
}

.publisher-section {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-row {
  grid-template-columns: 130px minmax(0, 1fr) minmax(320px, 320px);
  padding: 1rem;
}

.product-row .row-actions {
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 0;
}

.product-row .button {
  min-width: 178px;
  width: 178px;
  white-space: nowrap;
}

.product-row-shot {
  display: grid;
  width: 112px;
  height: 150px;
  place-items: center;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(160deg, #e0f2fe, #fff);
}

.product-row-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wide-row-shot img {
  object-fit: cover;
}

.placeholder-row-shot span {
  width: 72px;
  height: 92px;
  border-radius: 999px 999px 999px 28px;
  background: linear-gradient(145deg, #22c55e, #bef264);
  transform: rotate(18deg);
}

.app-gallery-section {
  padding-top: 24px;
}

.app-gallery {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 12%, rgba(14, 165, 233, 0.16), transparent 24rem),
    linear-gradient(180deg, #fff, #f1f5f9);
  padding: clamp(1rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-gallery img {
  max-height: 560px;
  min-width: 0;
  border-radius: 28px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(15, 23, 42, 0.2));
}

.app-gallery img:nth-child(1),
.app-gallery img:nth-child(3) {
  max-height: 470px;
  transform: translateY(1.2rem) rotate(-2deg);
}

.app-gallery img:nth-child(3) {
  transform: translateY(1.2rem) rotate(2deg);
}

.app-gallery-wide img {
  max-width: 32%;
  border-radius: 24px;
}

.pollen-hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(132, 204, 22, 0.16), transparent 24rem),
    linear-gradient(180deg, #f8fafc, #fff);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-intro,
  .product-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 430px;
  }

  .product-grid,
  .feature-grid,
  .story-grid,
  .contact-grid,
  .guide-layout,
  .guide-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-nav-card {
    position: static;
  }

  .device-stage {
    min-height: 540px;
  }

  .product-stories {
    grid-template-columns: 1fr;
  }

  .product-story {
    min-height: 390px;
  }

  .product-row {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .row-actions {
    grid-column: 2;
    align-items: flex-start;
  }

  .row-actions {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(248, 250, 252, 0.98);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero,
  .section,
  .page-hero {
    padding: 54px 0;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.45rem);
    letter-spacing: -0.015em;
    line-height: 1.08;
  }

  .hero-panel {
    min-height: 360px;
    border-radius: 30px;
  }

  .device-stage {
    min-height: 470px;
  }

  .phone-shot-main {
    width: 250px;
    height: 390px;
  }

  .phone-shot-left,
  .phone-shot-right {
    width: 150px;
    height: 220px;
  }

  .studio-note {
    left: 1rem;
    right: auto;
    top: auto;
    bottom: 0.8rem;
  }

  .product-story {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-story-media,
  .placeholder-bloom {
    min-height: 260px;
  }

  .product-story-media img {
    max-height: 300px;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .row-actions {
    grid-column: auto;
  }

  .product-row-shot {
    width: 100%;
    height: 210px;
  }

  .app-gallery {
    align-items: center;
    flex-direction: column;
  }

  .app-gallery img,
  .app-gallery img:nth-child(1),
  .app-gallery img:nth-child(3),
  .app-gallery-wide img {
    max-width: min(100%, 360px);
    max-height: none;
    transform: none;
  }

  .orbit-card {
    width: 160px;
  }

  .orbit-card-one {
    left: 1rem;
    top: 2rem;
  }

  .orbit-card-two {
    right: 0.8rem;
    top: 6.4rem;
  }

  .orbit-card-three {
    left: 1.7rem;
    bottom: 2rem;
  }

  .product-grid,
  .feature-grid,
  .story-grid,
  .contact-grid,
  .guide-layout,
  .guide-card {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
