@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

:root {
  --bg: #eef2e7;
  --bg-strong: #173225;
  --bg-soft: #f7f8f1;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --ink: #11261c;
  --ink-muted: rgba(17, 38, 28, 0.68);
  --line: rgba(17, 38, 28, 0.12);
  --brand: #2f8b57;
  --brand-strong: #21623e;
  --accent: #d6ef7f;
  --accent-strong: #edf9b8;
  --warning: #d98c3a;
  --shadow: 0 24px 60px rgba(17, 38, 28, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214, 239, 127, 0.52), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(47, 139, 87, 0.17), transparent 20%),
    linear-gradient(180deg, #f7f8ef 0%, #edf3e8 42%, #f5f7f1 100%);
  color: var(--ink);
}

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

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

.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;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(247, 248, 241, 0.9);
  border-bottom: 1px solid rgba(17, 38, 28, 0.06);
}

.topbar__inner,
.hero__content,
.section__inner,
.footer__inner,
.shop-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 6px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: url('/assets/brand/growguard-mark.svg') center / cover no-repeat;
  box-shadow: 0 10px 22px rgba(17, 38, 28, 0.18);
}

.brand__copy strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand__copy span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.topbar__nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(4px, 0.55vw, 10px);
  flex-wrap: nowrap;
  justify-content: flex-end;
  overflow-x: auto;
  padding: 2px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.topbar__nav::-webkit-scrollbar {
  display: none;
}

.nav-link {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  transform: translateY(-1px);
}

.topbar__downloads {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 5px 10px 5px 8px;
  border-radius: 12px;
  background: #101915;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(17, 38, 28, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  background: #173225;
  box-shadow: 0 16px 30px rgba(17, 38, 28, 0.22);
}

.store-badge__icon {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: rgba(214, 239, 127, 0.16);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
}

.store-badge__copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.store-badge__copy span {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.store-badge__copy strong {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
}

.demo-access {
  display: grid;
  gap: 10px;
  width: min(100%, 480px);
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 38, 28, 0.11);
  box-shadow: 0 14px 34px rgba(17, 38, 28, 0.1);
}

.demo-access__copy {
  display: grid;
  gap: 3px;
}

.demo-access__copy strong {
  font-weight: 850;
  color: var(--ink);
}

.demo-access__copy span {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.demo-access__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.demo-access__credentials span {
  padding: 7px 9px;
  border-radius: 10px;
  background: rgba(17, 38, 28, 0.05);
}

.demo-access code {
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 850;
}

.demo-access__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--bg-strong);
  color: white;
  font-weight: 850;
}

.demo-access__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-access__stores .store-badge {
  min-height: 40px;
  box-shadow: none;
}

.demo-access--mobile {
  display: none;
}

.demo-access--compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 10px;
  width: auto;
  min-width: 220px;
  max-width: 310px;
  margin-top: 0;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.demo-access--compact .demo-access__copy span {
  display: none;
}

.demo-access--compact .demo-access__copy strong {
  font-size: 0.86rem;
}

.demo-access--compact .demo-access__credentials {
  grid-column: 1 / -1;
  gap: 5px;
  font-size: 0.75rem;
}

.demo-access--compact .demo-access__credentials span {
  padding: 4px 6px;
  border-radius: 8px;
}

.demo-access--compact .demo-access__button {
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.78rem;
}

@media (max-width: 1280px) {
  .topbar__inner {
    min-height: 58px;
  }

  .brand__copy span {
    display: none;
  }

  .nav-link {
    padding: 7px 9px;
    font-size: 0.88rem;
  }

  .topbar__nav {
    justify-content: flex-start;
  }

  .topbar__downloads {
    display: none;
  }
}

@media (max-width: 960px) {
  .topbar__nav .nav-link[href^='#'] {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar__nav .nav-link[href='/senzori-compatibili/'],
  .topbar__nav .nav-link[href='/en/compatible-sensors/'] {
    display: none;
  }

  .topbar__nav .nav-link[href='/blog/'],
  .topbar__nav .nav-link[href='/en/blog/'] {
    display: inline-flex;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(17, 38, 28, 0.05);
}

.lang-switch a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.lang-switch a.is-active {
  background: var(--bg-strong);
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, #234b37 100%);
  color: white;
  box-shadow: 0 18px 30px rgba(33, 98, 62, 0.28);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: rgba(17, 38, 28, 0.12);
}

.hero {
  position: relative;
  padding: 48px 0 44px;
}

.hero__panel {
  position: relative;
  width: min(calc(100% - 20px), 1380px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 54px);
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 239, 127, 0.7), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(110, 184, 255, 0.26), transparent 24%),
    linear-gradient(135deg, #153322 0%, #18382a 35%, #274c3c 100%);
  color: white;
  box-shadow: 0 28px 90px rgba(23, 50, 37, 0.3);
}

.hero__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

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

.hero h1 {
  margin: 18px 0 16px;
  max-width: 10ch;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.hero p {
  max-width: 540px;
  margin: 0;
  font-size: clamp(1.04rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
  min-height: 560px;
}

.hero-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 55px rgba(8, 19, 14, 0.28);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--phone,
.stage-image--phone,
.story-visual--phone,
.landing-hero__visual--phone,
.visual-card--phone {
  background: #100d14;
}

.hero-card--phone img,
.stage-image--phone img,
.story-visual--phone img,
.landing-hero__visual--phone img,
.visual-card--phone img {
  object-fit: contain;
  background: #100d14;
}

.hero-card--primary {
  width: min(100%, 420px);
  right: 0;
  top: 16px;
  aspect-ratio: 0.76;
}

.hero-card--secondary {
  width: min(58%, 250px);
  left: 0;
  bottom: 54px;
  aspect-ratio: 0.82;
}

.hero-card--panel {
  right: 38px;
  bottom: 0;
  width: min(54%, 240px);
  padding: 18px;
  color: #102116;
  background: rgba(247, 248, 241, 0.92);
}

.hero-card--panel h3,
.mini-panel h3 {
  margin: 0 0 6px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
}

.hero-card--panel p,
.mini-panel p {
  margin: 0;
  color: rgba(17, 38, 28, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

.metric-ribbon {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  width: min(72%, 260px);
}

.metric-chip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(13, 26, 19, 0.72);
  color: white;
  font-size: 0.9rem;
}

.metric-chip strong {
  font-size: 1rem;
}

.section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.2));
}

.section--video {
  padding: clamp(44px, 6vw, 86px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(238, 242, 231, 0.1));
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1.24fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.video-showcase__copy h2 {
  margin: 14px 0 14px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.video-showcase__copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.video-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.video-showcase__frame {
  overflow: hidden;
  border-radius: 28px;
  background: #0f2118;
  border: 1px solid rgba(17, 38, 28, 0.1);
  box-shadow: 0 28px 70px rgba(17, 38, 28, 0.18);
}

.video-showcase__frame video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 720px);
  object-fit: contain;
  background: #0f2118;
}

.blog-index-hero {
  padding: clamp(48px, 7vw, 94px) 0 22px;
}

.blog-index-hero h1,
.blog-article__hero h1 {
  margin: 18px 0 16px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.blog-index-hero p,
.blog-article__hero p {
  max-width: 780px;
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.76;
}

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

.blog-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid rgba(17, 38, 28, 0.08);
  box-shadow: 0 18px 44px rgba(17, 38, 28, 0.08);
}

.blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  background: #102116;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 22px;
}

.blog-card h2 {
  margin: 10px 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1.32rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.blog-card p {
  margin: 0 0 18px;
  color: var(--ink-muted);
  line-height: 1.68;
}

.blog-read-more,
.blog-back {
  color: var(--brand-strong);
  font-weight: 800;
}

.blog-article {
  width: min(calc(100% - 32px), 1120px);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 86px) 0;
}

.blog-article__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.86fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.blog-article__image {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #102116;
  box-shadow: var(--shadow);
}

.blog-article__image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink-muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.blog-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(260px, 340px);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  margin: clamp(34px, 6vw, 66px) auto 0;
}

.blog-article__body {
  min-width: 0;
}

.blog-article__body p,
.blog-article__body li {
  color: rgba(17, 38, 28, 0.78);
  font-size: 1.05rem;
  line-height: 1.86;
}

.blog-article__section {
  margin-top: 36px;
}

.blog-article__section h2,
.blog-app-card h2,
.blog-related h2 {
  margin: 0 0 14px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.blog-app-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.62fr);
  gap: 22px;
  align-items: center;
  margin: 40px 0;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(23, 50, 37, 0.98), rgba(42, 88, 63, 0.95));
  color: white;
  box-shadow: var(--shadow);
}

.blog-app-card p {
  color: rgba(255, 255, 255, 0.78);
}

.blog-app-card img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 22px;
  background: #100d14;
}

.blog-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.blog-action-block {
  display: grid;
  gap: 16px;
  margin: 0 0 34px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 38, 28, 0.09);
  box-shadow: 0 16px 38px rgba(17, 38, 28, 0.08);
}

.blog-action-block--bottom {
  margin: 42px 0 0;
}

.blog-share-panel,
.blog-subscribe-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.blog-action-label,
.blog-subscribe-form strong {
  font-weight: 850;
  color: var(--ink);
}

.blog-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-share-button,
.blog-subscribe-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 38, 28, 0.1);
  background: rgba(47, 139, 87, 0.1);
  color: var(--brand-strong);
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.blog-share-button:hover,
.blog-subscribe-form button:hover {
  transform: translateY(-1px);
  background: rgba(47, 139, 87, 0.16);
}

.blog-subscribe-form {
  padding-top: 14px;
  border-top: 1px solid rgba(17, 38, 28, 0.08);
}

.blog-subscribe-form__copy {
  min-width: 210px;
}

.blog-subscribe-form p {
  margin: 4px 0 0;
  max-width: 360px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.blog-subscribe-form input[type='email'] {
  flex: 1 1 240px;
  min-height: 46px;
  min-width: 0;
  border: 1px solid rgba(17, 38, 28, 0.14);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
}

.blog-subscribe-form input[type='email']:focus {
  border-color: rgba(47, 139, 87, 0.52);
  box-shadow: 0 0 0 4px rgba(47, 139, 87, 0.12);
}

.blog-subscribe-form button {
  min-width: 132px;
  border-color: transparent;
  background: var(--bg-strong);
  color: white;
}

.blog-subscribe-form button:hover {
  background: var(--brand-strong);
}

.blog-subscribe-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.blog-subscribe-status {
  flex-basis: 100%;
  min-height: 1.25em;
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 750;
}

.blog-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.blog-related {
  margin-top: 44px;
  padding: 26px;
  border-radius: 26px;
  background: var(--surface-strong);
  border: 1px solid rgba(17, 38, 28, 0.08);
}

.blog-related__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-related__links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47, 139, 87, 0.09);
  color: var(--brand-strong);
  font-weight: 800;
}

.blog-more-articles {
  position: sticky;
  top: 96px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 38, 28, 0.08);
  box-shadow: 0 16px 44px rgba(17, 38, 28, 0.09);
}

.blog-more-articles h2 {
  margin: 0 0 16px;
  font-family: 'Sora', sans-serif;
  font-size: 1.18rem;
  line-height: 1.18;
}

.blog-more-articles p {
  margin: 0 0 16px;
  color: var(--ink-muted);
  line-height: 1.55;
}

.blog-more-articles__list {
  display: grid;
  gap: 14px;
}

.blog-more-article {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 38, 28, 0.08);
  color: var(--ink);
}

.blog-more-article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-more-article img {
  grid-row: span 3;
  width: 82px;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: 14px;
  background: #102116;
}

.blog-more-article span {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-more-article strong {
  font-size: 0.94rem;
  line-height: 1.25;
}

.blog-more-article small {
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.blog-more-articles__all {
  color: var(--brand-strong);
  font-weight: 850;
}

.section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 34px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 139, 87, 0.08);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section__header h2 {
  margin: 14px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.section__header p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 26px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line);
}

.feature-item:last-child {
  border-bottom: 0;
}

.feature-item__index {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  color: rgba(17, 38, 28, 0.24);
}

.feature-item h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.feature-item p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.7;
}

.feature-stage {
  position: sticky;
  top: 110px;
  min-height: 580px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(23, 50, 37, 0.98), rgba(25, 61, 45, 0.94));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-stage__glow {
  position: absolute;
  inset: auto -10% -18% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 239, 127, 0.36), transparent 68%);
  pointer-events: none;
}

.stage-image {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.stage-image--main {
  width: 72%;
  right: 8%;
  top: 12%;
}

.stage-image--secondary {
  width: 38%;
  left: 9%;
  bottom: 12%;
}

.mini-panel {
  position: absolute;
  left: 11%;
  top: 10%;
  width: min(52%, 260px);
  padding: 18px;
  border-radius: 22px;
  background: rgba(247, 248, 241, 0.92);
  color: var(--ink);
}

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

.use-card {
  min-height: 180px;
  padding: 22px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(17, 38, 28, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 36px rgba(17, 38, 28, 0.08);
}

.use-card h3 {
  margin: 12px 0 8px;
  font-size: 1.14rem;
}

.use-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.65;
}

.use-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(47, 139, 87, 0.1);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--brand-strong);
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
  align-items: stretch;
}

.story-block {
  padding: 28px;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid rgba(17, 38, 28, 0.08);
}

.story-block--dark {
  color: white;
  background:
    linear-gradient(160deg, rgba(23, 50, 37, 0.98), rgba(42, 88, 63, 0.95));
}

.story-block h3 {
  margin: 0 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.story-block p,
.story-list li {
  line-height: 1.74;
}

.story-list {
  margin: 22px 0 0;
  padding-left: 18px;
  color: inherit;
}

.story-visual {
  position: relative;
  min-height: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.visual-card {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid rgba(17, 38, 28, 0.08);
  box-shadow: 0 18px 44px rgba(17, 38, 28, 0.08);
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.visual-card--phone img {
  height: min(76vh, 760px);
}

.visual-card figcaption {
  padding: 14px 16px 18px;
  font-weight: 700;
  color: var(--ink);
}

.visual-card--wide {
  grid-column: span 2;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.release-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 16%, rgba(214, 239, 127, 0.44), transparent 25%),
    radial-gradient(circle at 92% 12%, rgba(110, 184, 255, 0.2), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(235, 243, 226, 0.78));
  border: 1px solid rgba(17, 38, 28, 0.09);
  box-shadow: var(--shadow);
}

.release-panel__intro {
  display: grid;
  align-content: center;
  gap: 14px;
}

.release-panel__intro h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.release-panel__intro p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.72;
}

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

.release-grid article {
  display: grid;
  gap: 9px;
  min-height: 150px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 38, 28, 0.08);
  backdrop-filter: blur(18px);
}

.release-grid strong {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.04em;
}

.release-grid span {
  color: var(--ink-muted);
  line-height: 1.64;
}

.landing-hero {
  padding: 54px 0 34px;
}

.landing-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.landing-hero__copy {
  display: grid;
  gap: 18px;
}

.landing-hero h1 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 4.7rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.landing-hero p {
  max-width: 660px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.landing-hero__visual {
  margin: 0;
  min-height: 430px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 38, 28, 0.08);
}

.landing-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.landing-hero__visual--phone {
  display: grid;
  place-items: center;
  min-height: min(82vh, 720px);
}

.landing-hero__visual--phone img {
  min-height: 0;
  height: min(82vh, 720px);
}

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

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

.landing-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 38, 28, 0.08);
  box-shadow: 0 18px 44px rgba(17, 38, 28, 0.08);
}

.landing-card h2 {
  margin: 0 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.landing-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.72;
}

.landing-steps {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.landing-steps h2,
.topic-links h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.landing-steps__grid {
  display: grid;
  gap: 14px;
}

.landing-steps__grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 38, 28, 0.08);
}

.landing-steps__grid span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--bg-strong);
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
}

.landing-steps__grid h3,
.landing-steps__grid p {
  margin: 0;
}

.landing-steps__grid h3 {
  font-family: 'Sora', sans-serif;
  letter-spacing: 0;
}

.landing-steps__grid p {
  color: var(--ink-muted);
  line-height: 1.66;
}

.topic-links {
  display: grid;
  gap: 22px;
}

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

.topic-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 38, 28, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.topic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(17, 38, 28, 0.1);
}

.topic-card span {
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topic-card strong {
  font-family: 'Sora', sans-serif;
  letter-spacing: 0;
  line-height: 1.3;
}

.cta-panel {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 239, 127, 0.28), transparent 22%),
    linear-gradient(145deg, #183222 0%, #102116 100%);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.cta-panel h2 {
  margin: 0 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
}

.cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  max-width: 620px;
  line-height: 1.7;
}

.cta-panel__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer {
  padding: 28px 0 52px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 44px 0 56px;
}

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

.legal-hero {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #173225 0%, #274c3c 100%);
  color: white;
  box-shadow: var(--shadow);
}

.legal-hero h1 {
  margin: 10px 0 12px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.legal-hero p {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.legal-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(17, 38, 28, 0.08);
}

.legal-card h2,
.legal-card h3 {
  margin: 0 0 10px;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.04em;
}

.legal-card p,
.legal-card li {
  color: var(--ink-muted);
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

.legal-card--full {
  grid-column: 1 / -1;
}

.legal-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(214, 239, 127, 0.3);
  border: 1px solid rgba(47, 139, 87, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.shop-page {
  min-height: 100vh;
}

.shop-hero {
  padding: 42px 0 28px;
}

.shop-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
  padding-bottom: 80px;
}

.shop-lead {
  display: grid;
  gap: 20px;
}

.shop-banner {
  padding: clamp(26px, 4vw, 38px);
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at 12% 24%, rgba(214, 239, 127, 0.36), transparent 24%),
    linear-gradient(145deg, #173225 0%, #28513f 100%);
  box-shadow: 0 24px 60px rgba(17, 38, 28, 0.22);
}

.shop-banner h1 {
  margin: 12px 0 14px;
  max-width: 12ch;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.shop-banner p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.filter-row,
.meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  cursor: pointer;
}

.pill-btn.is-active {
  background: var(--bg-strong);
  color: white;
  border-color: transparent;
}

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

.catalog-card {
  display: grid;
  grid-template-rows: 220px auto;
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid rgba(17, 38, 28, 0.08);
  box-shadow: 0 20px 46px rgba(17, 38, 28, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(17, 38, 28, 0.12);
}

.catalog-card.is-focused {
  outline: 3px solid rgba(47, 139, 87, 0.34);
  box-shadow: 0 28px 64px rgba(47, 139, 87, 0.22);
}

.catalog-card__media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #dce6d6 0%, #eef2e7 100%);
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 38, 28, 0.72);
  color: white;
  font-size: 0.82rem;
}

.catalog-promo {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 38, 28, 0.8);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
}

.catalog-card__body {
  display: grid;
  gap: 16px;
  padding: 20px;
  align-content: start;
}

.catalog-card__body > div:first-child {
  display: grid;
  gap: 10px;
}

.catalog-card__eyebrow {
  font-size: 0.83rem;
  color: var(--brand-strong);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 800;
}

.catalog-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.28;
}

.catalog-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.66;
}

.catalog-card__description {
  color: rgba(17, 38, 28, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-line;
}

.catalog-card__description.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-card__description.is-expanded {
  display: block;
}

.catalog-card__toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-strong);
  font-weight: 800;
  cursor: pointer;
  justify-self: start;
}

.catalog-card__toggle:hover {
  text-decoration: underline;
}

.catalog-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-features span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(47, 139, 87, 0.08);
  color: var(--brand-strong);
  font-size: 0.84rem;
}

.catalog-notes {
  margin-top: -2px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.catalog-notes strong {
  color: var(--ink);
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  margin-top: auto;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 190px;
}

.catalog-card__link,
.catalog-card__share {
  font-weight: 800;
  text-decoration: none;
}

.catalog-card__share {
  color: var(--brand-strong);
}

.catalog-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.catalog-price strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.06em;
}

.catalog-price span {
  color: var(--ink-muted);
  font-size: 0.88rem;
  min-height: 1.2em;
}

.catalog-compare {
  color: var(--warning);
  font-style: normal;
  font-size: 0.88rem;
}

.cart-panel {
  position: sticky;
  top: 98px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 38, 28, 0.08);
  box-shadow: 0 22px 44px rgba(17, 38, 28, 0.12);
}

.cart-panel h2 {
  margin: 0 0 12px;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

.cart-panel p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.65;
}

.cart-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.cart-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(17, 38, 28, 0.04);
}

.cart-item__top,
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-item__hint {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}

.qty-btn:disabled,
.pill-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.cart-summary {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.cart-summary__row--soft {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.cart-summary strong {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.05em;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 6px;
}

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

.field label {
  font-weight: 700;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(17, 38, 28, 0.14);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

[data-country-other-wrap][hidden] {
  display: none !important;
}

.status-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(214, 239, 127, 0.22);
  color: #2e4d21;
  line-height: 1.65;
}

.status-note[hidden] {
  display: none;
}

.notice {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 38, 28, 0.06);
  color: var(--ink);
}

.empty-state {
  padding: 32px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  color: var(--ink-muted);
}

.sensor-hero {
  padding: 64px 0 24px;
}

.sensor-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.sensor-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.55rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  margin: 16px 0 20px;
  max-width: 980px;
}

.sensor-hero p {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 780px;
}

.sensor-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sensor-hero__proof span {
  border: 1px solid rgba(17, 38, 28, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 800;
  color: var(--forest);
}

.sensor-hero__visual {
  position: relative;
  min-height: 520px;
}

.sensor-hero__visual::before {
  content: '';
  position: absolute;
  inset: 8% 4% 0 10%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 24% 18%, rgba(214, 239, 127, 0.58), transparent 34%),
    linear-gradient(145deg, rgba(61, 113, 62, 0.2), rgba(255, 255, 255, 0.62));
  filter: blur(0.5px);
}

.sensor-hero__visual img {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(86%, 660px);
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.64);
  transform: rotate(1deg);
}

.sensor-floating-card {
  position: absolute;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 38, 28, 0.1);
  box-shadow: 0 18px 42px rgba(17, 38, 28, 0.16);
}

.sensor-floating-card strong {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.04em;
}

.sensor-floating-card span {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.sensor-floating-card--one {
  left: 0;
  bottom: 84px;
}

.sensor-floating-card--two {
  right: 2%;
  bottom: 18px;
  background: rgba(214, 239, 127, 0.92);
}

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

.protocol-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 38, 28, 0.1);
  box-shadow: 0 18px 44px rgba(17, 38, 28, 0.06);
  display: grid;
  gap: 14px;
  align-content: start;
}

.protocol-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--forest);
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.protocol-card h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.05em;
}

.protocol-card p,
.protocol-card li {
  color: var(--ink-muted);
  line-height: 1.65;
}

.protocol-card ul {
  margin: 0;
  padding-left: 18px;
}

.sensor-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(26px, 5vw, 48px);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(17, 38, 28, 0.92), rgba(42, 83, 46, 0.88)),
    radial-gradient(circle at 100% 0, rgba(214, 239, 127, 0.35), transparent 32%);
  color: white;
  box-shadow: var(--shadow);
}

.sensor-flow h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.08em;
  margin: 12px 0 16px;
}

.sensor-flow p,
.sensor-flow .section__label {
  color: rgba(255, 255, 255, 0.76);
}

.payload-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payload-map div {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.payload-map span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.payload-map strong {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.04em;
}

@media (max-width: 1140px) {
  .hero__content,
  .feature-layout,
  .split-story,
  .shop-shell,
  .section__header,
  .landing-hero__inner,
  .landing-steps,
  .release-panel,
  .sensor-hero__grid,
  .sensor-flow {
    grid-template-columns: 1fr;
  }

  .feature-stage,
  .cart-panel {
    position: static;
  }

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

  .grid-uses,
  .landing-grid,
  .protocol-grid,
  .release-grid,
  .stats-strip,
  .topic-links__grid,
  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel__actions {
    justify-content: flex-start;
  }

  .landing-hero h1 {
    font-size: 3.8rem;
  }

  .landing-steps h2,
  .topic-links h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 860px) {
  .topbar__inner {
    align-items: center;
    padding: 8px 0;
    flex-direction: row;
    gap: 10px;
    min-height: 58px;
  }

  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand__copy span {
    display: none;
  }

  .topbar__nav {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding: 2px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .topbar__nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    flex: 0 0 auto;
    padding: 7px 9px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .topbar__downloads {
    display: none;
  }

  .demo-access--mobile {
    display: none;
  }

  .lang-switch {
    flex: 0 0 auto;
    gap: 3px;
    padding: 4px;
  }

  .lang-switch a {
    padding: 6px 8px;
    font-size: 0.82rem;
  }

  .hero__visual {
    min-height: 420px;
  }

  .sensor-hero__visual {
    min-height: 440px;
  }

  .hero-card--primary {
    width: 72%;
  }

  .hero-card--secondary {
    width: 42%;
  }

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

  .catalog-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-actions {
    justify-content: stretch;
  }

  .catalog-meta .btn,
  .catalog-actions .pill-btn {
    width: 100%;
    justify-content: center;
  }

  .visual-card--wide {
    grid-column: span 2;
  }

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

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

  .video-showcase {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .blog-article__hero,
  .blog-article__layout,
  .blog-app-card {
    grid-template-columns: 1fr;
  }

  .blog-share-panel,
  .blog-subscribe-form {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-share-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-share-button,
  .blog-subscribe-form button,
  .blog-subscribe-form input[type='email'] {
    width: 100%;
  }

  .demo-access {
    width: 100%;
  }

  .demo-access__credentials {
    display: grid;
    grid-template-columns: 1fr;
  }

  .demo-access__stores {
    display: grid;
    grid-template-columns: 1fr;
  }

  .demo-access__button,
  .demo-access__stores .store-badge {
    width: 100%;
  }

  .blog-more-articles {
    position: static;
  }

  .blog-article__image img {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .topbar__inner,
  .hero__content,
  .landing-hero__inner,
  .section__inner,
  .footer__inner,
  .shop-shell {
    width: min(calc(100% - 22px), var(--max));
  }

  .topbar__inner {
    width: min(calc(100% - 14px), var(--max));
  }

  .topbar__nav {
    width: auto;
  }

  .topbar__downloads {
    display: none;
  }

  .brand__copy strong {
    font-size: 0.92rem;
  }

  .nav-link {
    padding: 6px 8px;
  }

  .lang-switch a {
    padding: 5px 7px;
  }

  .hero {
    padding-top: 26px;
  }

  .landing-hero {
    padding-top: 30px;
  }

  .landing-hero h1 {
    font-size: 2.45rem;
    line-height: 1.05;
  }

  .landing-hero p {
    font-size: 1rem;
  }

  .landing-steps h2,
  .topic-links h2 {
    font-size: 2rem;
  }

  .landing-hero__visual,
  .landing-hero__visual img {
    min-height: 330px;
  }

  .hero__panel {
    border-radius: 30px;
    padding: 22px;
  }

  .blog-grid {
    gap: 16px;
  }

  .blog-card__body,
  .blog-related {
    padding: 18px;
  }

  .blog-article {
    width: min(calc(100% - 22px), 1120px);
  }

  .blog-article__body p,
  .blog-article__body li {
    font-size: 1rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero-card--primary {
    width: 78%;
    top: 0;
  }

  .hero-card--secondary {
    width: 46%;
    bottom: 36px;
  }

  .hero-card--panel {
    width: 60%;
    right: 8px;
    bottom: 0;
  }

  .metric-ribbon {
    width: calc(100% - 36px);
  }

  .grid-uses,
  .stats-strip,
  .visual-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-item {
    grid-template-columns: 1fr;
  }

  .feature-item__index {
    font-size: 1.2rem;
  }

  .feature-stage {
    min-height: 420px;
  }

  .stage-image--main {
    width: 78%;
    right: 6%;
  }

  .stage-image--secondary {
    width: 44%;
    left: 6%;
  }

  .mini-panel {
    width: 64%;
    left: 6%;
  }

  .shop-banner h1 {
    max-width: none;
  }

  .cart-panel {
    padding: 18px;
  }

  .protocol-grid,
  .landing-grid,
  .release-grid,
  .topic-links__grid,
  .payload-map {
    grid-template-columns: 1fr;
  }

  .landing-steps__grid article {
    grid-template-columns: 1fr;
  }

  .landing-steps__grid span {
    grid-row: auto;
  }

  .sensor-hero {
    padding-top: 34px;
  }

  .sensor-hero__visual {
    min-height: 360px;
  }

  .sensor-hero__visual img {
    width: 86%;
  }

  .sensor-floating-card {
    padding: 13px 14px;
  }
}
