:root {
  --bg: #0b0c0f;
  --panel: #121419;
  --panel-2: #17191f;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f1ec;
  --muted: #92939a;
  --coral: #ff6b5e;
  --violet: #8b67f5;
  --mint: #68daa9;
  --amber: #efb75d;
  --display: "Unbounded", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--body);
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }

header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid transparent;
  transition: .25s;
}

header.scrolled {
  border-color: var(--line);
  background: rgba(11, 12, 15, 0.86);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.04em;
}

.logo-mark {
  width: 30px;
  height: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 2px;
  padding: 6px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--coral), var(--violet));
}

.logo-mark i { width: 100%; border-radius: 4px; background: white; }
.logo-mark i:nth-child(1) { height: 7px; }
.logo-mark i:nth-child(2) { height: 16px; }
.logo-mark i:nth-child(3) { height: 10px; }

nav { display: flex; gap: 30px; color: #b6b5b6; font-size: 12px; }
nav a:hover { color: white; }

.header-button {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.menu {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu span { display: block; width: 16px; height: 1px; margin: 5px auto; background: white; }

.hero,
.status-section,
.how,
.circles,
.use-cases,
.business,
.closing {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 780px;
  height: 100svh;
  max-height: 940px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 50px;
  padding-top: 72px;
}

.label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aaa9aa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 14px var(--coral);
}

h1, h2 {
  margin: 22px 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: 1.08;
}

h1 { font-size: clamp(50px, 5.4vw, 82px); }
h2 { font-size: clamp(36px, 4vw, 58px); }
h1 em, h2 em { color: var(--coral); font-style: normal; }

.hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: #aaa9ad;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; }
.hero-actions > span { color: #66676e; font-size: 9px; line-height: 1.5; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: transform .25s, background .25s;
}

.button:hover { transform: translateY(-2px); }
.button.primary { color: #17100f; background: var(--coral); }
.button.primary:hover { background: #ff7d72; }

.hero-image {
  height: min(78vh, 720px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--panel);
}

.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }

.status-section,
.how,
.circles,
.use-cases,
.business { padding: 120px 0; border-top: 1px solid var(--line); }

.section-title { max-width: 780px; margin-bottom: 52px; }
.section-title > span,
.business-copy > span,
.closing > div > span {
  color: #6f7078;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-title > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.status-demo {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.status-tabs { display: flex; flex-direction: column; border-right: 1px solid var(--line); }

.status-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 22px 26px;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.status-tab:last-child { border-bottom: 0; }
.status-tab:hover, .status-tab.active { background: rgba(255,255,255,.045); }
.status-tab > i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 16px currentColor;
}
.status-tab > i.violet { color: var(--violet); background: var(--violet); }
.status-tab > i.mint { color: var(--mint); background: var(--mint); }
.status-tab > i.amber { color: var(--amber); background: var(--amber); }
.status-tab > i.coral { color: var(--coral); background: var(--coral); }
.status-tab b, .status-tab small { display: block; }
.status-tab b { margin-bottom: 4px; font-size: 13px; font-weight: 600; }
.status-tab small { color: #777880; font-size: 10px; }

.status-card {
  --tone: var(--violet);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: 28px 34px;
  background: radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--tone) 16%, transparent), transparent 34%);
}
.status-card[data-tone="open"] { --tone: var(--mint); }
.status-card[data-tone="rest"] { --tone: var(--amber); }
.status-card[data-tone="active"] { --tone: var(--coral); }

.card-top { display: flex; justify-content: space-between; color: #686971; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.card-top span:last-child { display: flex; align-items: center; gap: 7px; }
.card-top i { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); }

.orb {
  position: relative;
  width: 114px;
  height: 114px;
  margin: 32px auto 26px;
  border-radius: 48% 52% 56% 44% / 54% 45% 55% 46%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.55), transparent 9%),
    radial-gradient(circle at 58% 58%, var(--tone), #382b4b 75%);
  box-shadow: 0 0 60px color-mix(in srgb, var(--tone) 38%, transparent);
  animation: float 5s ease-in-out infinite;
  transition: .4s;
}

.orb::before, .orb::after {
  position: absolute;
  content: "";
  inset: -22px;
  border: 1px solid color-mix(in srgb, var(--tone) 24%, transparent);
  border-radius: 50%;
}
.orb::after { inset: -43px; opacity: .5; }
.orb span { position: absolute; inset: 13px; border: 1px solid rgba(255,255,255,.18); border-radius: inherit; }

@keyframes float { 50% { transform: scale(1.04) rotate(3deg); border-radius: 56% 44% 48% 52% / 45% 55% 45% 55%; } }

.status-copy { text-align: center; }
.status-copy small { color: #73747c; font-size: 9px; }
.status-copy small b { color: var(--tone); }
.status-copy h3 { margin: 10px 0 7px; font-family: var(--display); font-size: 22px; font-weight: 500; letter-spacing: -.04em; }
.status-copy p { max-width: 500px; margin: 0 auto; color: #82838b; font-size: 10px; }

.status-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}
.status-facts div { padding: 12px; background: rgba(11,12,15,.55); }
.status-facts span, .status-facts b { display: block; }
.status-facts span { color: #64656d; font-size: 7px; text-transform: uppercase; }
.status-facts b { margin-top: 3px; font-size: 9px; font-weight: 600; }
.correct { align-self: center; margin-top: 15px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; color: #74757d; background: transparent; font-size: 8px; cursor: pointer; }

.how-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.how-visual { overflow: hidden; aspect-ratio: 1.05; border: 1px solid var(--line); border-radius: 20px; }
.how-visual img { width: 100%; height: 100%; object-fit: cover; }

.steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.steps article:first-child { border-top: 1px solid var(--line); }
.steps article > span { color: var(--coral); font-size: 9px; }
.steps h3 { margin: 0 0 7px; font-size: 14px; }
.steps p { max-width: 500px; margin: 0; color: #7e7f87; font-size: 11px; line-height: 1.7; }

.circle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.circle-grid article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}
.circle-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #151216;
  background: var(--coral);
  font-weight: 800;
}
.circle-icon.work { background: var(--violet); }
.circle-icon.friends { background: var(--mint); }
.circle-grid h3 { margin: 48px 0 10px; font-family: var(--display); font-size: 19px; font-weight: 500; letter-spacing: -.04em; }
.circle-grid p { min-height: 52px; margin: 0 0 26px; color: #aaa9ad; font-size: 12px; }
.circle-grid article > span { color: #66676f; font-size: 9px; }

.privacy-line {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
  padding: 28px;
  border: 1px solid rgba(104,218,169,.22);
  border-radius: 16px;
  background: rgba(104,218,169,.045);
}
.lock { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(104,218,169,.35); border-radius: 50%; color: var(--mint); font-size: 22px; }
.privacy-line h3 { margin: 0 0 5px; font-size: 13px; }
.privacy-line p { margin: 0; color: #7d827f; font-size: 10px; }

.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.case {
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}
.case.large { grid-column: 1 / -1; min-height: 350px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.case > span, .case > div > span { color: #666870; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.case h3 { margin: 24px 0 12px; font-family: var(--display); font-size: 22px; font-weight: 500; letter-spacing: -.045em; }
.case p { max-width: 520px; margin: 0; color: #85868d; font-size: 11px; line-height: 1.75; }

.mini-chat { display: grid; gap: 8px; }
.mini-chat > div { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.025); }
.mini-chat i { width: 28px; height: 28px; border-radius: 50%; }
.mini-chat i.mint { background: var(--mint); }
.mini-chat i.violet { background: var(--violet); }
.mini-chat i.amber { background: var(--amber); }
.mini-chat b, .mini-chat small { display: block; }
.mini-chat b { font-size: 10px; }
.mini-chat small { color: #6d6e76; font-size: 8px; }
.mini-chat em { color: #888990; font-size: 8px; font-style: normal; }

.attention { margin-top: 42px; }
.attention strong { font-family: var(--display); font-size: 38px; font-weight: 500; }
.attention > span { margin-left: 8px; color: #707179; font-size: 8px; }
.attention svg { width: 100%; height: 90px; margin-top: 4px; }
.attention path { fill: none; stroke: var(--coral); stroke-width: 2; }

.team-dashboard {
  height: 150px;
  margin: 35px -8px -8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.team-dashboard img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.business { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.business-copy > p { max-width: 500px; margin: 0; color: #8b8c93; font-size: 12px; line-height: 1.8; }
.plans { border-top: 1px solid var(--line); }
.plans article { padding: 22px 0; border-bottom: 1px solid var(--line); }
.plans article > div { display: flex; justify-content: space-between; }
.plans span { font-family: var(--display); font-size: 14px; }
.plans b { color: var(--coral); font-size: 9px; text-transform: uppercase; }
.plans p { margin: 7px 0 0; color: #76777f; font-size: 10px; }

.closing {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  text-align: center;
}
.closing > div:not(.closing-orb) { position: relative; z-index: 2; }
.closing h2 { font-size: clamp(40px, 5vw, 70px); }
.closing p { max-width: 550px; margin: 0 auto 28px; color: #9b999c; font-size: 12px; }
.closing-orb {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.16), rgba(255,107,94,.22) 20%, rgba(139,103,245,.15) 48%, transparent 70%);
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe { 50% { transform: scale(1.12); opacity: .78; } }

footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  border-top: 1px solid var(--line);
  color: #62636b;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
footer .logo { color: white; font-size: 14px; text-transform: none; }

@media (max-width: 860px) {
  header { height: 64px; padding: 0 20px; }
  nav {
    position: fixed;
    inset: 64px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 30px 22px;
    background: rgba(11,12,15,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .25s;
  }
  nav.open { opacity: 1; pointer-events: auto; transform: none; }
  nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 20px; }
  .header-button { display: none; }
  .menu { display: block; }

  .hero { height: auto; max-height: none; grid-template-columns: 1fr; padding: 125px 0 70px; }
  .hero-image { height: min(76vw, 560px); }
  .status-demo, .how-grid, .business { grid-template-columns: 1fr; }
  .status-tabs { display: grid; grid-template-columns: repeat(2, 1fr); border-right: 0; border-bottom: 1px solid var(--line); }
  .status-tab:nth-child(odd) { border-right: 1px solid var(--line); }
  .circle-grid { grid-template-columns: 1fr; }
  .circle-grid article { min-height: 250px; }
  .cases-grid { grid-template-columns: 1fr; }
  .case.large { grid-column: auto; grid-template-columns: 1fr; }
  .business { gap: 48px; }
}

@media (max-width: 540px) {
  .hero, .status-section, .how, .circles, .use-cases, .business, .closing { width: calc(100% - 32px); }
  .hero { padding-top: 106px; }
  h1 { font-size: 43px; }
  h2 { font-size: 33px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-image { width: calc(100% + 32px); height: 410px; margin-left: -16px; border-radius: 0; }
  .hero-image img { width: 130%; max-width: none; object-position: 66% center; }
  .status-section, .how, .circles, .use-cases, .business { padding: 80px 0; }
  .section-title { margin-bottom: 36px; }
  .status-tabs { grid-template-columns: 1fr; }
  .status-tab { min-height: 86px; border-right: 0 !important; }
  .status-card { min-height: 540px; padding: 24px 18px; }
  .status-facts { grid-template-columns: 1fr; }
  .status-facts div { display: flex; justify-content: space-between; }
  .how-visual { aspect-ratio: .9; }
  .circle-grid article { min-height: 270px; }
  .privacy-line { grid-template-columns: 1fr; }
  .case { min-height: 350px; padding: 24px; }
  .case.large { gap: 40px; }
  .mini-chat > div { grid-template-columns: 30px 1fr; }
  .mini-chat em { display: none; }
  .closing { width: 100%; padding: 0 18px; }
  .closing h2 { font-size: 37px; }
  footer { min-height: 140px; flex-wrap: wrap; gap: 14px; padding: 28px 18px; }
}

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