:root {
  --bg: #f2efe9;
  --bg-deep: #e9e5de;
  --paper: #fbfaf7;
  --ink: #18201e;
  --muted: #64706d;
  --line: rgba(24, 32, 30, 0.13);
  --green: #6f987f;
  --green-bright: #b9dc8b;
  --green-pale: #dce9d7;
  --dark: #16201e;
  --dark-soft: #21302d;
  --cream: #f6f3ed;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Unbounded", "Manrope", Arial, sans-serif;
  --shadow-soft: 0 24px 70px rgba(34, 45, 42, 0.12);
  --shadow-window: 0 28px 70px rgba(15, 23, 22, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

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

.section-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(242, 239, 233, 0.76);
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, background-color 220ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(242, 239, 233, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand > span:last-child > span {
  color: var(--green);
}

.brand-logo {
  width: 34px;
  height: 34px;
  overflow: hidden;
  padding: 6px;
  border-radius: 11px;
  background: #111;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button svg,
.text-link svg,
.footer-up svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-dark {
  padding: 12px 18px;
  color: var(--cream);
  background: var(--dark);
}

.button-dark:hover {
  background: #243532;
}

.nav-cta {
  margin-left: 6px;
}

.menu-button {
  display: none;
}

.hero {
  min-height: 740px;
  padding: 82px 0 92px;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  filter: blur(1px);
}

.hero::before {
  top: 80px;
  right: -220px;
  width: 640px;
  height: 640px;
  background: rgba(185, 220, 139, 0.27);
}

.hero::after {
  bottom: -270px;
  left: -240px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(24, 32, 30, 0.08);
}

.hero .container {
  display: grid;
  position: relative;
  z-index: 1;
  align-items: center;
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
  gap: 50px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: #4e675f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(111, 152, 127, 0.16);
}

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

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  letter-spacing: -0.08em;
}

h1 {
  font-size: clamp(64px, 6.1vw, 94px);
  font-weight: 700;
  line-height: 1.03;
}

h1 span,
h2 span {
  color: var(--green);
}

.hero-text {
  max-width: 560px;
  margin: 27px 0 31px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.button-large {
  padding: 17px 22px;
}

.button-accent {
  color: #17201d;
  background: var(--green-bright);
  box-shadow: 0 12px 28px rgba(129, 165, 94, 0.22);
}

.button-accent:hover {
  background: #c7e79d;
  box-shadow: 0 16px 34px rgba(129, 165, 94, 0.3);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 800;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 42px;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.hero-note strong {
  color: var(--ink);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-right: -8px;
  place-items: center;
  border: 2px solid var(--bg);
  border-radius: 50%;
  color: #eef5eb;
  background: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.avatar-stack span:nth-child(2) {
  background: var(--dark);
}

.avatar-stack span:nth-child(3) {
  background: #b2c98b;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(228, 238, 234, 0.16);
  border-radius: 19px;
  background: #141a1f;
  box-shadow: var(--shadow-window);
}

.hero-window {
  position: absolute;
  z-index: 2;
  top: 52%;
  left: 50%;
  width: 760px;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 10px;
  color: #eef2ef;
  background: #192229;
  font-size: 7px;
  font-weight: 800;
}

.window-logo {
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 5px;
  background: var(--green);
  font-family: Georgia, serif;
  font-size: 10px;
}

.window-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: auto;
  color: #719381;
}

.window-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #61ad76;
}

.window-actions {
  color: #87928f;
  font-weight: 500;
}

.hero-window img {
  width: 100%;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(81, 110, 101, 0.18);
  border-radius: 50%;
}

.orbit-one {
  top: -30px;
  right: -10px;
  width: 360px;
  height: 360px;
}

.orbit-two {
  bottom: -60px;
  left: 6px;
  width: 280px;
  height: 280px;
}

.floating-label {
  display: flex;
  position: absolute;
  z-index: 4;
  align-items: center;
  gap: 10px;
  padding: 11px 14px 11px 11px;
  border: 1px solid rgba(24, 32, 30, 0.08);
  border-radius: 14px;
  background: rgba(251, 250, 247, 0.91);
  box-shadow: 0 14px 28px rgba(24, 32, 30, 0.1);
  backdrop-filter: blur(12px);
}

.floating-label-top {
  top: 30px;
  right: -12px;
}

.floating-label-bottom {
  bottom: 40px;
  left: -18px;
}

.label-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  color: #345243;
  background: var(--green-pale);
}

.label-icon-dark {
  color: var(--cream);
  background: var(--dark);
}

.label-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-label strong,
.floating-label small {
  display: block;
}

.floating-label strong {
  margin-bottom: 2px;
  font-size: 11px;
}

.floating-label small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.value-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.38);
}

.value-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.2fr 1.7fr;
}

.value-item {
  min-height: 150px;
  padding: 28px 26px;
  border-left: 1px solid var(--line);
}

.value-item:last-child {
  border-right: 1px solid var(--line);
}

.value-item strong,
.value-item span {
  display: block;
}

.value-item strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: -0.1em;
}

.value-item span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.value-quote {
  display: flex;
  align-items: center;
  gap: 17px;
  background: rgba(220, 233, 215, 0.4);
}

.value-quote svg {
  width: 38px;
  min-width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.value-quote span {
  max-width: 250px;
  margin-top: 0;
  color: #4e655e;
  line-height: 1.65;
}

.benefits {
  padding: 145px 0 155px;
}

.section-heading {
  max-width: 770px;
}

.section-heading h2,
.download h2 {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.14;
}

.section-heading > p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  margin-top: 55px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefit-card {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(24, 32, 30, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(251, 250, 247, 0.64);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.benefit-card-large {
  grid-column: span 2;
}

.card-number {
  color: rgba(24, 32, 30, 0.38);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-top: 36px;
  place-items: center;
  border-radius: 15px;
  color: #4e7566;
  background: var(--green-pale);
}

.card-icon svg,
.step-icon svg,
.download-icon svg,
.download-arrow,
.toast-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card h3 {
  margin: 20px 0 11px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.07em;
  line-height: 1.28;
}

.benefit-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.mini-chat {
  display: grid;
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 260px;
  gap: 8px;
}

.mini-chat div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  color: #6c7c77;
  background: #f3f1ec;
  box-shadow: 0 8px 18px rgba(24, 32, 30, 0.06);
}

.mini-chat span {
  display: grid;
  width: 20px;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 7px;
  color: white;
  background: var(--green);
  font-size: 7px;
  font-weight: 800;
}

.mini-chat p {
  color: inherit;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
}

.mini-chat-answer {
  margin-left: 20px;
}

.benefit-card-dark {
  color: #eef3ee;
  border-color: var(--dark);
  background: var(--dark);
}

.benefit-card-dark .card-number {
  color: rgba(239, 245, 239, 0.35);
}

.benefit-card-dark .card-icon {
  color: var(--green-bright);
  background: rgba(185, 220, 139, 0.12);
}

.benefit-card-dark p {
  color: #9babaa;
}

.theme-dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.theme-dots span {
  width: 19px;
  height: 19px;
  border: 2px solid var(--dark);
  border-radius: 50%;
  background: #6f987f;
  outline: 1px solid rgba(255, 255, 255, 0.18);
}

.theme-dots span:nth-child(2) {
  background: #5875a0;
}

.theme-dots span:nth-child(3) {
  background: #876bb1;
}

.theme-dots span:nth-child(4) {
  background: #b97365;
}

.benefit-card-accent {
  background: var(--green-bright);
}

.benefit-card-accent .card-icon {
  color: #2d503f;
  background: rgba(255, 255, 255, 0.34);
}

.benefit-card-accent p {
  color: #4c644f;
}

.interface {
  padding: 140px 0;
  color: #edf3ee;
  background: var(--dark);
}

.interface::before {
  position: absolute;
  top: -360px;
  right: -160px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(109, 151, 127, 0.16);
  content: "";
}

.section-heading-row {
  display: flex;
  position: relative;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.interface .section-kicker {
  color: var(--green-bright);
}

.section-heading-row > p:last-child {
  max-width: 360px;
  margin: 0 0 8px;
  color: #a4b3b0;
}

.gallery {
  position: relative;
  margin-top: 58px;
}

.gallery-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 7px;
  border: 1px solid rgba(232, 241, 235, 0.16);
  border-radius: 16px;
  background: rgba(6, 14, 13, 0.38);
  box-shadow: 0 12px 28px rgba(2, 8, 7, 0.12);
  backdrop-filter: blur(12px);
}

.gallery-tabs-label {
  padding: 0 11px 0 7px;
  color: var(--green-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(232, 241, 235, 0.1);
  border-radius: 11px;
  color: #aab8b5;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-align: left;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.gallery-tab:hover {
  color: #e8f1ed;
  border-color: rgba(185, 220, 139, 0.34);
  background: rgba(111, 152, 127, 0.16);
  transform: translateY(-1px);
}

.gallery-tab.active {
  color: #1d312b;
  border-color: var(--green-bright);
  background: var(--green-bright);
}

.gallery-tab span {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 9px;
}

.gallery-tab.active span {
  color: #507658;
}

.gallery-stage {
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(232, 241, 235, 0.18);
  border-radius: 22px;
  background: #151c21;
  box-shadow: 0 28px 70px rgba(2, 8, 7, 0.24);
}

.stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 35px;
  padding: 0 13px;
  color: #73827e;
  background: #1a252b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64a775;
  box-shadow: 0 0 0 4px rgba(100, 167, 117, 0.14);
}

.gallery-stage img {
  width: 100%;
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-stage img.changing {
  opacity: 0.42;
  transform: scale(0.995);
}

.start {
  padding: 140px 0;
}

.center-heading {
  max-width: none;
  text-align: center;
}

.center-heading .section-kicker {
  justify-content: center;
}

.steps {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
}

.step {
  position: relative;
  min-height: 278px;
  padding: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.step:last-child {
  border-right: 1px solid var(--line);
}

.step-number {
  position: absolute;
  top: 25px;
  right: 26px;
  color: rgba(24, 32, 30, 0.36);
  font-family: var(--font-display);
  font-size: 11px;
}

.step-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: #4c7867;
  background: var(--green-pale);
}

.step h3 {
  margin: 39px 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.08em;
}

.step p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.download {
  padding: 0 0 120px;
}

.download-shell {
  display: grid;
  min-height: 450px;
  overflow: hidden;
  border-radius: 30px;
  color: #edf4ef;
  background: var(--dark);
  grid-template-columns: minmax(0, 1fr) 330px;
  box-shadow: 0 30px 70px rgba(24, 32, 30, 0.16);
}

.download-main {
  padding: 60px;
}

.download .section-kicker {
  color: var(--green-bright);
}

.download h2 {
  max-width: 700px;
}

.download-main > p:not(.section-kicker) {
  max-width: 600px;
  margin: 21px 0 0;
  color: #a7b6b3;
  font-size: 15px;
  line-height: 1.75;
}

.download-options {
  display: flex;
  max-width: 430px;
  gap: 10px;
  margin-top: 32px;
}

.download-option {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid rgba(235, 242, 235, 0.13);
  border-radius: 14px;
  color: #ecf2ee;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.download-option:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 220, 139, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.primary-download {
  color: #1e302a;
  border-color: var(--green-bright);
  background: var(--green-bright);
}

.primary-download:hover {
  background: #c7e79d;
}

.download-icon {
  display: grid;
  width: 36px;
  min-width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.13);
}

.download-icon svg {
  width: 19px;
  height: 19px;
}

.download-option strong,
.download-option small {
  display: block;
}

.download-option strong {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
}

.download-option small {
  opacity: 0.68;
  font-size: 9px;
  font-weight: 700;
}

.download-arrow {
  width: 17px;
  height: 17px;
  margin-left: auto;
}

.download-side {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  background: var(--green-bright);
  text-align: center;
}

.download-side::before,
.download-side::after {
  position: absolute;
  border: 1px solid rgba(36, 65, 53, 0.2);
  border-radius: 50%;
  content: "";
}

.download-side::before {
  width: 360px;
  height: 360px;
}

.download-side::after {
  width: 220px;
  height: 220px;
}

.download-logo {
  z-index: 1;
  width: 95px;
  height: 95px;
  overflow: hidden;
  padding: 17px;
  border-radius: 30px;
  background: #101816;
  box-shadow: 0 20px 36px rgba(31, 59, 47, 0.22);
}

.download-side p,
.download-side span,
.download-badge {
  z-index: 1;
}

.download-side p {
  margin: 18px 0 3px;
  color: #203c31;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.download-side > span {
  color: rgba(32, 60, 49, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 34px;
  padding: 10px 14px;
  border: 1px solid rgba(32, 60, 49, 0.15);
  border-radius: 999px;
  color: #2d503f;
  background: rgba(255, 255, 255, 0.22);
  font-size: 10px;
  font-weight: 800;
}

.download-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4f866c;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  min-height: 110px;
  align-items: center;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.footer-up {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 12px;
  font-weight: 800;
}

.footer-up svg {
  width: 16px;
  height: 16px;
}

.toast {
  display: flex;
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  max-width: 370px;
  align-items: center;
  gap: 11px;
  padding: 15px 17px;
  border: 1px solid rgba(242, 248, 244, 0.16);
  border-radius: 15px;
  color: #edf4ef;
  background: rgba(22, 32, 30, 0.94);
  box-shadow: 0 20px 44px rgba(24, 32, 30, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(14px);
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  display: grid;
  width: 28px;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: var(--green-bright);
  background: rgba(185, 220, 139, 0.12);
}

.toast-icon svg {
  width: 17px;
  height: 17px;
}

.toast > span:last-child {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-delay {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

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

@media (max-width: 1100px) {
  .hero {
    padding-top: 64px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .hero-visual {
    min-height: 460px;
  }

  .hero-window {
    width: min(850px, 95%);
  }

  .floating-label-top {
    right: 10px;
  }

  .floating-label-bottom {
    left: 10px;
  }

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

  .benefit-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 30px), 620px);
  }

  .nav {
    height: 68px;
  }

  .menu-button {
    display: flex;
    z-index: 33;
    width: 42px;
    height: 42px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 0;
    border-radius: 12px;
    background: rgba(24, 32, 30, 0.07);
    cursor: pointer;
  }

  .menu-button span {
    width: 16px;
    height: 2px;
    border-radius: 5px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    display: flex;
    position: fixed;
    z-index: 32;
    top: 68px;
    right: 0;
    left: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 15px;
    border-bottom: 1px solid var(--line);
    background: rgba(242, 239, 233, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 8px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 76px;
  }

  h1 {
    font-size: clamp(43px, 11vw, 66px);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .button-large {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-note {
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 280px;
    margin-top: 13px;
  }

  .hero-window {
    top: 48%;
    width: 112%;
    border-radius: 13px;
    transform: translate(-50%, -50%) rotate(-3deg);
  }

  .window-bar {
    height: 22px;
    font-size: 5px;
  }

  .window-logo {
    width: 11px;
    height: 11px;
    font-size: 8px;
  }

  .floating-label {
    display: none;
  }

  .orbit-one {
    width: 220px;
    height: 220px;
  }

  .orbit-two {
    width: 180px;
    height: 180px;
  }

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

  .value-item {
    min-height: 125px;
    padding: 21px 18px;
    border-bottom: 1px solid var(--line);
  }

  .value-item:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .value-item strong {
    font-size: 34px;
  }

  .value-quote {
    gap: 12px;
  }

  .value-quote svg {
    width: 27px;
    min-width: 27px;
  }

  .benefits,
  .interface,
  .start {
    padding: 100px 0;
  }

  .section-heading h2,
  .download h2 {
    font-size: clamp(35px, 9vw, 50px);
  }

  .section-heading > p:last-child {
    font-size: 14px;
  }

  .benefit-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card-large {
    min-height: 315px;
    grid-column: span 1;
  }

  .mini-chat {
    right: 16px;
    bottom: 16px;
    width: 245px;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .gallery {
    margin-top: 38px;
  }

  .gallery-tabs {
    width: 100%;
    margin-bottom: 13px;
    overflow-x: auto;
    border-radius: 14px;
    scrollbar-width: none;
  }

  .gallery-tabs::-webkit-scrollbar {
    display: none;
  }

  .gallery-tabs-label {
    display: none;
  }

  .gallery-tab {
    min-width: max-content;
    padding: 11px 12px;
  }

  .stage-top {
    height: 25px;
    font-size: 6px;
  }

  .steps {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 220px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .step:last-child {
    border-bottom: 1px solid var(--line);
  }

  .step h3 {
    margin-top: 28px;
  }

  .download {
    padding-bottom: 80px;
  }

  .download-shell {
    grid-template-columns: 1fr;
  }

  .download-main {
    padding: 38px 25px;
  }

  .download-options {
    flex-direction: column;
  }

  .download-side {
    min-height: 255px;
  }

  .download-logo {
    width: 75px;
    height: 75px;
    padding: 13px;
    border-radius: 23px;
  }

  .download-badge {
    margin-top: 24px;
  }

  .footer-grid {
    min-height: 180px;
    justify-items: center;
    padding: 27px 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-up {
    justify-content: center;
  }

  .toast {
    right: 15px;
    bottom: 15px;
    left: 15px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
