:root {
  color-scheme: light;
  --canvas: #fafafa;
  --surface: #ffffff;
  --surface-muted: #f1f4f2;
  --ink: #202522;
  --muted: #66716c;
  --line: rgba(32, 37, 34, 0.1);
  --accent: #2f8f7d;
  --accent-strong: #236d60;
  --accent-soft: #dcede8;
  --accent-bright: #77cfbd;
  --coral: #f28b72;
  --yellow: #fff0a8;
  --pink: #ffd8e1;
  --green: #cfefdf;
  --violet: #e5d1ef;
  --blue: #c6dae6;
  --dark-panel: #183d3d;
  --shadow: 0 24px 70px rgba(26, 47, 40, 0.12);
  --header-bg: rgba(250, 250, 250, 0.82);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shell: min(1180px, calc(100% - 40px));
}

html[data-theme="dark"] {
  color-scheme: dark;
  --canvas: #3b3b3b;
  --surface: #474747;
  --surface-muted: #404441;
  --ink: #f6faf8;
  --muted: #bdc8c3;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #9de0d3;
  --accent-strong: #b5ede2;
  --accent-soft: #214b45;
  --accent-bright: #79d3c1;
  --dark-panel: #183d3d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --header-bg: rgba(59, 59, 59, 0.84);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color 180ms ease, color 180ms ease;
}

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

button,
input {
  font: inherit;
}

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

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--canvas);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -1px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(47, 143, 125, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-dot {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  margin-left: auto;
}

.main-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

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

.control {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.control:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.control:active,
.button:active,
.store-button:active {
  transform: scale(0.97);
}

.language-toggle {
  width: 88px;
  height: 42px;
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: border-color 140ms ease, transform 140ms ease;
}

.language-toggle:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.language-toggle i {
  width: 1px;
  height: 15px;
  background: var(--line);
}

.language-toggle span {
  min-width: 31px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  transition: color 160ms ease, background-color 160ms ease;
}

.language-toggle span.active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

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

.sun-icon,
.close-icon,
.menu-toggle {
  display: none;
}

html[data-theme="dark"] .moon-icon {
  display: none;
}

html[data-theme="dark"] .sun-icon {
  display: block;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 17px;
  background: var(--accent-bright);
  color: #17322c;
  font-weight: 900;
  letter-spacing: 0.1px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(47, 143, 125, 0.2);
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(47, 143, 125, 0.28);
  filter: saturate(1.08);
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 14px;
  font-size: 14px;
}

.hero {
  min-height: 780px;
  padding-top: 136px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.eyebrow,
.kicker,
.card-label {
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-strong);
}

.eyebrow > span:first-child {
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  max-width: 640px;
  margin: 24px 0 24px;
  font-size: clamp(52px, 6.2vw, 86px);
  line-height: 0.96;
  letter-spacing: -4.8px;
  font-weight: 900;
}

.hero h1 em {
  position: relative;
  color: var(--accent-strong);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 9px;
  border-radius: 50%;
  border-top: 3px solid var(--coral);
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

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

.text-link {
  position: relative;
  font-weight: 800;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
  transition: right 160ms ease;
}

.text-link:hover::after {
  right: 0;
}

.trust-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #6ac79c;
  box-shadow: 0 0 0 4px rgba(106, 199, 156, 0.16);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -3;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0 46%, transparent 47%);
  opacity: 0.9;
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 590px;
  height: 390px;
}

.orbit-two {
  width: 450px;
  height: 600px;
  transform: rotate(32deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 628px;
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 48px;
  background: #212624;
  box-shadow: 0 42px 90px rgba(22, 49, 42, 0.3), inset 0 0 0 1px #111;
  transform: rotate(2.2deg);
}

.phone::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 23px;
  border-radius: 99px;
  background: #202522;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 15px 13px;
  border-radius: 38px;
  background: #fafafa;
  color: #202522;
}

.phone-status {
  height: 24px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
}

.app-heading {
  margin-top: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-heading > div {
  display: flex;
  flex-direction: column;
}

.app-heading strong {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.app-heading strong span {
  color: #52ae9c;
}

.app-heading small {
  margin-top: 5px;
  color: #6e7873;
  font-size: 8px;
  font-weight: 650;
}

.app-heading button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: #202522;
  font-weight: 900;
}

.search {
  height: 39px;
  margin-top: 16px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 13px;
  background: white;
  color: #7b847f;
  font-size: 10px;
}

.search > span:first-child {
  font-size: 20px;
  line-height: 0;
  transform: rotate(-15deg);
}

.context-chips {
  margin-top: 12px;
  display: flex;
  gap: 7px;
}

.context-chips span {
  padding: 6px 10px;
  border: 1px solid #e6eae8;
  border-radius: 99px;
  font-size: 8px;
  font-weight: 800;
}

.context-chips .active {
  border-color: #2f8f7d;
  background: #dcede8;
}

.space-row {
  margin: 13px -13px 0 0;
  display: flex;
  gap: 8px;
}

.space-card {
  position: relative;
  min-width: 82px;
  height: 76px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
}

.space-card > span {
  font-size: 13px;
}

.space-card strong {
  font-size: 10px;
}

.space-card small {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 8px;
}

.space-card.dark {
  background: #202522;
  color: white;
}

.space-card.mint {
  background: #cfefdf;
}

.space-card.violet {
  background: #e5d1ef;
}

.note-heading {
  margin: 18px 1px 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.note-heading strong {
  font-size: 13px;
}

.note-heading small {
  color: #7b847f;
  font-size: 8px;
}

.note-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mock-note {
  min-height: 149px;
  padding: 13px;
  border-radius: 18px;
}

.mock-note small {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.6px;
}

.mock-note strong {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.08;
}

.mock-note p {
  margin: 8px 0 0;
  font-size: 9px;
  line-height: 1.35;
}

.mock-note.yellow {
  background: #fff0a8;
}

.mock-note.green {
  background: #cfefdf;
}

.capture {
  position: absolute;
  right: 15px;
  bottom: 16px;
  height: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 14px;
  background: #77cfbd;
  color: #17322c;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(47, 143, 125, 0.24);
}

.capture > span:first-child {
  font-size: 18px;
  font-weight: 500;
}

.floating-note {
  position: absolute;
  z-index: 4;
  width: 190px;
  min-height: 112px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  color: #202522;
  box-shadow: var(--shadow);
}

.floating-note strong {
  font-size: 17px;
  line-height: 1.08;
}

.floating-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.note-yellow {
  top: 90px;
  right: -14px;
  background: var(--yellow);
  transform: rotate(7deg);
  animation: float 5s ease-in-out infinite;
}

.note-pink {
  left: -18px;
  bottom: 94px;
  background: var(--pink);
  transform: rotate(-6deg);
  animation: float-alt 6s ease-in-out infinite;
}

@keyframes float {
  50% { transform: translateY(-12px) rotate(5deg); }
}

@keyframes float-alt {
  50% { transform: translateY(10px) rotate(-4deg); }
}

.ticker {
  overflow: hidden;
  padding: 17px 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  animation: marquee 28s linear infinite;
}

.ticker-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding-block: 120px;
}

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

.kicker {
  margin: 0 0 15px;
  color: var(--accent-strong);
}

.section h2,
.download-section h2,
.invite-dialog h2 {
  margin: 0;
  font-size: clamp(39px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -3px;
  font-weight: 900;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.bento {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.bento h3 {
  max-width: 520px;
  margin: 14px 0 12px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.bento p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #202522;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.feature-brand-symbol {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.yellow-icon { background: var(--yellow); }
.pink-icon { background: var(--pink); }
.mint-icon { background: var(--green); }

.bento-snap {
  background: linear-gradient(145deg, var(--surface) 35%, color-mix(in srgb, var(--yellow), var(--surface) 46%));
}

.duration-demo {
  position: absolute;
  right: 34px;
  bottom: 35px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.duration-demo > span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.duration-demo .selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.duration-line {
  flex: 1;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--line);
}

.duration-line i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.bento-infinite {
  background: linear-gradient(150deg, var(--surface) 38%, color-mix(in srgb, var(--pink), var(--surface) 48%));
}

.infinite-mark {
  position: absolute;
  right: 28px;
  bottom: -76px;
  color: var(--coral);
  font-size: 240px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.22;
}

.bento-spaces {
  grid-column: 1 / -1;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, var(--surface), var(--accent-soft));
}

.space-stack {
  position: relative;
  min-height: 300px;
}

.stack-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 180px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid rgba(32, 37, 34, 0.1);
  border-radius: 30px;
  color: #202522;
  box-shadow: 0 20px 45px rgba(37, 66, 57, 0.12);
}

.stack-card > span { font-size: 26px; }
.stack-card > strong { font-size: 22px; }
.stack-card > small { position: absolute; top: 24px; right: 24px; font-weight: 900; }
.stack-one { z-index: 3; background: var(--green); transform: translate(-46%, -44%) rotate(3deg); }
.stack-two { z-index: 2; background: var(--yellow); transform: translate(-72%, -61%) rotate(-8deg); }
.stack-three { z-index: 1; background: var(--violet); transform: translate(-24%, -67%) rotate(11deg); }

.collaboration {
  background: #183d3d;
  color: #f6fffc;
}

.collaboration-grid {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.collab-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.collab-visual::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.team-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 30px;
  border-radius: 34px;
  background: #f6f9f8;
  color: #202522;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: rotate(-2deg);
}

.team-card-top,
.progress-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-symbol {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #dcede8;
  color: #2f8f7d;
}

.team-symbol svg { width: 25px; height: 25px; }

.live-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 99px;
  background: #e5f6ee;
  color: #377a61;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #53ba8b;
}

.team-card .card-label {
  display: block;
  margin-top: 32px;
  color: #68746e;
}

.team-card h3 {
  margin: 8px 0 24px;
  font-size: 34px;
  letter-spacing: -1.5px;
}

.member-row {
  display: flex;
  margin-bottom: 30px;
}

.avatar {
  width: 44px;
  height: 44px;
  margin-right: -8px;
  display: grid;
  place-items: center;
  border: 3px solid #f6f9f8;
  border-radius: 50%;
  color: #202522;
  font-size: 11px;
  font-weight: 900;
}

.avatar-one { background: #fff0a8; }
.avatar-two { background: #c6dae6; }
.avatar-three { background: #ffd8e1; }
.avatar-more { background: #202522; color: white; }

.progress-block {
  font-size: 12px;
  font-weight: 800;
}

.progress {
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #e2e8e5;
}

.progress i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: #2f8f7d;
}

.permission-card {
  position: absolute;
  z-index: 3;
  min-width: 215px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(49, 91, 85, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.permission-card > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #9de0d3;
}

.permission-card div { display: flex; flex-direction: column; }
.permission-card small { color: #9de0d3; font-size: 8px; font-weight: 900; letter-spacing: 1px; }
.permission-card strong { font-size: 12px; }
.permission-owner { top: 55px; right: -24px; }
.permission-member { bottom: 36px; left: -18px; }

.collab-copy .kicker {
  color: #9de0d3;
}

.collab-copy h2 {
  max-width: 620px;
  color: white;
}

.section-lead {
  margin: 24px 0 0;
  color: rgba(240, 255, 251, 0.68);
  font-size: 18px;
  line-height: 1.55;
}

.clean-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.clean-list li > span {
  padding-top: 2px;
  color: #9de0d3;
  font-size: 11px;
  font-weight: 900;
}

.clean-list strong {
  display: block;
  font-size: 16px;
}

.clean-list p {
  margin: 3px 0 0;
  color: rgba(240, 255, 251, 0.6);
  font-size: 14px;
}

.premium-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  border-radius: 40px;
  background: linear-gradient(125deg, #153635, #2d6a66);
  color: white;
}

.premium-copy {
  padding: clamp(38px, 6vw, 70px);
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffdc78;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.premium-badge svg {
  fill: currentColor;
  stroke: none;
}

.premium-badge img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.premium-card h2 {
  max-width: 600px;
  margin-top: 24px;
  color: white;
}

.premium-copy > p {
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.button-light {
  background: #f6faf8;
  color: #17322c;
  box-shadow: none;
}

.premium-benefits {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.premium-benefits > div {
  min-height: 185px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(12, 42, 40, 0.52);
}

.premium-benefits > div:nth-child(1) { border-radius: 24px 0 0; }
.premium-benefits > div:nth-child(2) { border-radius: 0 24px 0 0; }
.premium-benefits > div:nth-child(3) { border-radius: 0 0 0 24px; }
.premium-benefits > div:nth-child(4) { border-radius: 0 0 24px; }

.premium-benefits strong {
  color: #ffdc78;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -3px;
}

.premium-benefits strong small {
  font-size: 25px;
  letter-spacing: -1px;
}

.premium-benefits span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.privacy-section {
  padding-top: 10px;
}

.privacy-card {
  padding: clamp(34px, 6vw, 64px);
  display: grid;
  grid-template-columns: 80px minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.privacy-symbol {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 23px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.privacy-symbol svg { width: 32px; height: 32px; }
.privacy-card h2 { font-size: clamp(34px, 4vw, 52px); }
.privacy-card > p { margin: 0; color: var(--muted); font-size: 17px; }

.download-section {
  padding-block: 110px;
  background: var(--accent-soft);
}

.download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.download-inner h2 {
  max-width: 680px;
}

.download-inner p:not(.kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-button {
  position: relative;
  width: 310px;
  min-height: 84px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 52px 1fr 34px;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(32, 37, 34, 0.08);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.store-button:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent), transparent 50%);
  box-shadow: 0 18px 38px rgba(32, 37, 34, 0.14);
}

.store-logo {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--accent-soft);
}

.store-logo img {
  width: 29px;
  height: 29px;
  display: block;
  object-fit: contain;
}

.apple-logo {
  color: var(--ink);
}

.apple-logo img {
  width: 26px;
  height: 31px;
}

.play-logo img {
  width: 30px;
  height: 30px;
}

.store-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-copy small {
  color: var(--accent-strong);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 1.05px;
}

.store-copy strong {
  margin-top: 1px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.45px;
}

.store-copy em {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-go {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--accent-strong);
  transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.store-go svg {
  width: 16px;
  height: 16px;
}

.store-button:hover .store-go {
  background: var(--accent-soft);
  transform: translateX(2px);
}

.site-footer {
  padding-block: 54px;
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 50px;
}

.footer-brand { font-size: 22px; }
.footer-brand .brand-mark { width: 34px; height: 34px; }
.footer-grid > div:first-child > p { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 24px; }
.copyright { margin: 0; color: var(--muted); font-size: 13px; }

.invite-dialog {
  width: min(520px, calc(100% - 28px));
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.invite-dialog::backdrop {
  background: rgba(14, 26, 22, 0.68);
  backdrop-filter: blur(7px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-muted);
  color: var(--ink);
  cursor: pointer;
}

.invite-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 25px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.invite-icon svg { width: 29px; height: 29px; }
.invite-dialog h2 { margin-bottom: 16px; font-size: 40px; }
.invite-dialog > p:not(.kicker):not(.invite-note) { margin: 0 0 24px; color: var(--muted); }

.invite-code {
  width: 100%;
  margin-bottom: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface-muted);
  color: var(--ink);
  cursor: pointer;
}

.invite-code strong {
  font-size: 24px;
  letter-spacing: 2px;
}

.invite-code > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.invite-code svg { width: 16px; height: 16px; }
.invite-open { width: 100%; }
.invite-stores { margin-top: 17px; display: flex; justify-content: center; gap: 20px; }
.invite-stores a { color: var(--accent-strong); font-size: 13px; font-weight: 800; }
.invite-note { margin: 18px 0 0; color: var(--muted); text-align: center; font-size: 12px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 300;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--canvas);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1020px) {
  .main-nav { display: none; }
  .menu-toggle { display: grid; }
  .site-header.menu-open .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 14px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border-bottom: 1px solid var(--line);
    background: var(--canvas);
  }
  .site-header.menu-open .main-nav a { padding: 14px 4px; font-size: 17px; }
  .site-header.menu-open .menu-icon { display: none; }
  .site-header.menu-open .close-icon { display: block; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
    text-align: center;
  }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { max-width: 760px; }
  .hero-visual { margin-top: 10px; }
  .collaboration-grid { grid-template-columns: 1fr; }
  .collab-copy { max-width: 720px; }
  .premium-card { grid-template-columns: 1fr; }
  .privacy-card { grid-template-columns: 80px 1fr; }
  .privacy-card > p { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 620px); --radius-lg: 28px; }
  .header-inner { min-height: 68px; }
  .brand { font-size: 22px; }
  .brand-mark { width: 31px; height: 31px; border-radius: 10px; }
  .desktop-download { display: none; }
  .site-header.menu-open .main-nav { top: 68px; }
  .hero {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 70px;
    gap: 45px;
  }
  .hero h1 {
    margin-block: 19px;
    font-size: clamp(45px, 14vw, 64px);
    letter-spacing: -3.1px;
  }
  .hero h1 em { white-space: normal; }
  .hero-lead { font-size: 17px; }
  .hero-actions { width: 100%; flex-direction: column; gap: 17px; }
  .hero-actions .button { width: 100%; }
  .trust-row { justify-content: center; }
  .hero-visual { min-height: 540px; transform: scale(0.92); margin: -20px 0; }
  .phone { width: 288px; height: 568px; border-radius: 43px; }
  .phone-screen { border-radius: 34px; }
  .floating-note { width: 155px; min-height: 98px; padding: 15px; }
  .floating-note strong { font-size: 14px; }
  .note-yellow { right: -20px; top: 72px; }
  .note-pink { left: -20px; bottom: 70px; }
  .orbit-one { width: 480px; height: 340px; }
  .orbit-two { width: 380px; height: 540px; }
  .section { padding-block: 82px; }
  .section-heading { margin-bottom: 34px; }
  .section h2, .download-section h2 { font-size: clamp(38px, 11vw, 52px); letter-spacing: -2.5px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento { min-height: 420px; padding: 26px; }
  .bento h3 { font-size: 33px; }
  .bento p { font-size: 16px; }
  .bento-spaces { grid-column: auto; grid-template-columns: 1fr; min-height: 690px; align-items: start; }
  .space-stack { min-height: 310px; }
  .stack-card { width: 220px; height: 160px; padding: 20px; }
  .duration-demo { right: 24px; bottom: 25px; left: 24px; flex-wrap: wrap; }
  .duration-line { flex-basis: 100%; }
  .collaboration { padding-top: 66px; }
  .collaboration-grid { gap: 56px; }
  .collab-visual { min-height: 500px; }
  .team-card { padding: 25px; }
  .team-card h3 { font-size: 29px; }
  .permission-owner { top: 22px; right: -5px; }
  .permission-member { bottom: 15px; left: -5px; }
  .premium-card { border-radius: 28px; }
  .premium-copy { padding: 34px 26px; }
  .premium-benefits { padding: 14px; }
  .premium-benefits > div { min-height: 155px; padding: 19px; }
  .premium-benefits strong { font-size: 46px; }
  .privacy-card { grid-template-columns: 1fr; gap: 24px; }
  .privacy-card > p { grid-column: auto; }
  .privacy-section { padding-top: 0; }
  .download-inner { align-items: stretch; flex-direction: column; }
  .store-button { width: 100%; max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .footer-links { flex-wrap: wrap; }
  .invite-dialog { padding: 34px 22px 26px; }
  .invite-dialog h2 { font-size: 34px; }
  .invite-code { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .language-toggle { width: 80px; height: 39px; border-radius: 13px; }
  .language-toggle span { min-width: 27px; height: 29px; }
  .icon-control { width: 39px; height: 39px; border-radius: 13px; }
  .hero-visual { transform: scale(0.84); margin: -50px 0; }
  .floating-note { display: none; }
  .permission-card { min-width: 185px; }
  .premium-benefits { grid-template-columns: 1fr; }
  .premium-benefits > div { min-height: 125px; border-radius: 18px !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
