:root {
  color-scheme: light;
  --ink: #050505;
  --soft: #eef1f6;
  --muted: #5d636e;
  --line: rgba(18, 22, 30, 0.1);
  --blue: #0757ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 33% 27%, rgba(255, 255, 255, 0.92), transparent 24rem),
    radial-gradient(circle at 82% 24%, rgba(219, 226, 239, 0.68), transparent 25rem),
    linear-gradient(180deg, #edf0f6 0%, #fafafa 100%);
}

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

.stage {
  min-height: 100vh;
  display: block;
}

.panel {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at 33% 27%, rgba(255, 255, 255, 0.92), transparent 24rem),
    radial-gradient(circle at 82% 24%, rgba(219, 226, 239, 0.68), transparent 25rem),
    linear-gradient(180deg, #edf0f6 0%, #fafafa 100%);
  border: 0;
  padding: clamp(24px, 4.8vw, 76px);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: clamp(22px, 4vw, 68px);
  overflow: hidden;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 760;
  letter-spacing: 0;
}

.brand i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 74px);
  font-size: 17px;
  color: #111;
}

.nav a {
  transition: opacity 160ms ease;
}

.nav a:hover {
  opacity: 0.52;
}

.start {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 25px;
  border-radius: 9px;
  background: #000;
  color: #fff;
  font-size: 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 90px);
}

.headline h1 {
  margin: 0;
  font-size: clamp(62px, 8.4vw, 140px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 780;
}

.showcase {
  align-self: center;
  display: grid;
  gap: 24px;
  transform: translateY(18px);
}

.caption {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 2px;
}

.caption p {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.28;
  font-style: italic;
}

.mini-icon,
.tool-icon {
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  background: linear-gradient(145deg, #0757ff, #67a3ff);
  box-shadow: 0 18px 30px rgba(7, 87, 255, 0.22);
}

.mini-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
}

.mini-icon::after,
.tool-icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.showcase img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 22px 38px rgba(20, 28, 42, 0.1));
}

.showcase h2 {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 720;
}

.tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 80px);
  width: min(760px, 58%);
  margin-left: clamp(48px, 7vw, 110px);
}

.tools a {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.tool-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
}

.tool-icon.swaps {
  background: linear-gradient(145deg, #0757ff, #86b5ff);
}

.tool-icon.voice {
  background: linear-gradient(145deg, #0757ff, #1e75ff);
}

.tool-icon.trans {
  background: linear-gradient(145deg, #78a9ff, #0757ff);
}

.tools strong {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.1;
  letter-spacing: 0;
}

.tools small {
  color: var(--muted);
  font-size: 16px;
}

.foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  color: #242832;
  font-size: 16px;
}

.foot a {
  justify-self: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #222;
}

.foot span {
  justify-self: start;
  color: var(--muted);
}

@media (max-width: 920px) {
  .stage {
    min-height: 100vh;
  }

  .panel {
    min-height: 100vh;
    padding: 22px;
    gap: 26px;
    grid-template-rows: auto auto auto auto;
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .start {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

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

  .headline h1 {
    font-size: clamp(56px, 15vw, 96px);
    line-height: 0.98;
  }

  .showcase {
    transform: none;
    gap: 16px;
  }

  .showcase img {
    max-width: min(100%, 560px);
    margin: 0 auto;
  }

  .caption p {
    font-size: 18px;
  }

  .tools {
    width: 100%;
    margin-left: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .tool-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  .tools strong {
    font-size: 16px;
  }

  .tools small {
    font-size: 13px;
  }

  .foot {
    grid-template-columns: 1fr auto;
  }

  .foot a {
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 22px;
  }

  .brand i {
    width: 8px;
    height: 8px;
  }

  .nav {
    display: none;
  }

  .caption {
    gap: 12px;
  }

  .mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .mini-icon::after {
    inset: 11px;
  }

  .showcase h2 {
    font-size: 20px;
  }

  .foot {
    margin-top: 4px;
  }
}

@media (max-width: 560px) {
  .panel {
    padding: 18px;
    gap: 22px;
  }

  .topbar {
    gap: 12px;
  }

  .brand span {
    max-width: 8.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .start {
    min-height: 40px;
    border-radius: 8px;
    padding: 0 14px;
  }

  .headline h1 {
    font-size: clamp(50px, 17vw, 76px);
  }

  .caption p {
    font-size: 15px;
  }

  .showcase img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
  }

  .tools {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tools a {
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
  }

  .tools small {
    display: none;
  }

  .foot {
    font-size: 14px;
  }
}
