* {
  box-sizing: border-box;
}

:root {
  --ink: #090a0f;
  --muted: #555b66;
  --line: #d9dce2;
  --soft: #f6f7f9;
  --shadow: 0 20px 54px rgba(10, 11, 15, .10);
  --shadow-soft: 0 10px 26px rgba(10, 11, 15, .075);
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow: hidden;
}

.page {
  width: 100vw;
  height: 100svh;
  min-height: 650px;
  padding: clamp(16px, 2.2vh, 26px) clamp(32px, 5vw, 92px) clamp(10px, 1.6vh, 18px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  gap: clamp(8px, 1.2vh, 14px);
  background:
    radial-gradient(ellipse at 50% 52%, rgba(235, 237, 241, .72) 0%, rgba(255, 255, 255, 0) 42%),
    #fff;
}

.topbar {
  height: clamp(44px, 6vh, 64px);
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 24px);
}

.brand img {
  width: clamp(125px, 10vw, 174px);
  height: auto;
  object-fit: contain;
}

.brand span {
  width: 1px;
  height: clamp(28px, 4vh, 44px);
  background: #b9bcc4;
}

.brand strong {
  font-size: clamp(24px, 2.2vw, 37px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(330px, .86fr) minmax(620px, 1.14fr);
  align-items: center;
  gap: clamp(34px, 4.5vw, 78px);
}

.product-panel {
  position: relative;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
}

.product-glow {
  position: absolute;
  inset: 9% 11% 11%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 239, 243, .52), rgba(255,255,255,0) 64%);
}

.product {
  position: relative;
  z-index: 1;
  width: auto;
  height: min(100%, 58vh);
  max-width: 92%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(10, 11, 15, .16));
  transform: translateY(-8px);
}

.platform {
  position: absolute;
  z-index: 0;
  bottom: 9%;
  width: min(58%, 360px);
  height: clamp(22px, 4.6vh, 38px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(248,249,250,.70), rgba(236,238,242,.62));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 10px 22px rgba(0,0,0,.045);
  opacity: .62;
  transform: translateX(1%);
}

.content-panel {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: clamp(10px, 1.3vh, 15px);
}

.copy p {
  margin: 0 0 8px;
  font-size: clamp(10px, .78vw, 13px);
  font-weight: 950;
  letter-spacing: .27em;
}

.copy h1 {
  margin: 0;
  font-size: clamp(52px, 5vw, 84px);
  line-height: .91;
  font-weight: 950;
  letter-spacing: -.078em;
}

.copy h2 {
  margin: 10px 0 0;
  max-width: 760px;
  color: #4e535e;
  font-size: clamp(16px, 1.23vw, 23px);
  line-height: 1.22;
  font-weight: 430;
  letter-spacing: -.027em;
}

.previews {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(132px, 11vw, 178px);
  align-items: end;
  gap: clamp(16px, 2.2vw, 28px);
}

.dashboard {
  min-width: 0;
  border: 2px solid #b9bdc5;
  border-radius: clamp(18px, 1.6vw, 24px);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
  padding: clamp(12px, 1.25vw, 18px);
}

.dash-title {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 3px;
}

.dash-title img {
  width: clamp(42px, 3.2vw, 58px);
  height: auto;
}

.dash-title b {
  font-size: clamp(13px, 1.02vw, 17px);
  line-height: 1;
  font-weight: 900;
}

.dash-title small {
  padding: 5px 12px;
  border-radius: 999px;
  background: #f2f3f5;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
  font-size: clamp(8px, .62vw, 10px);
  font-weight: 850;
}

.dash-main {
  min-height: clamp(78px, 10vh, 108px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.gauge {
  justify-self: center;
  width: clamp(82px, 7.6vw, 112px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, #fff 0 55%, transparent 56%),
    repeating-conic-gradient(#0a0b0f 0 5deg, transparent 5deg 9deg);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}

.gauge div {
  width: 74%;
  height: 74%;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e5e6e9;
}

.gauge strong {
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.07em;
}

.gauge strong span {
  font-size: .42em;
}

.gauge em {
  font-style: normal;
  font-size: clamp(5px, .46vw, 7px);
  font-weight: 950;
}

.status {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.status small {
  font-size: clamp(7px, .55vw, 9px);
  font-weight: 950;
}

.status b {
  padding: 7px 12px;
  border-radius: 999px;
  background: #0a0b0f;
  color: #fff;
  box-shadow: 0 9px 17px rgba(0,0,0,.15);
  font-size: clamp(8px, .62vw, 10px);
  white-space: nowrap;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(7px, .8vw, 10px);
}

.metric {
  min-width: 0;
  min-height: clamp(42px, 5.2vh, 54px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: clamp(7px, .8vw, 10px);
  border-radius: 13px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e5e7eb, 0 6px 14px rgba(0,0,0,.04);
}

.metric i {
  flex: 0 0 auto;
  width: clamp(22px, 1.8vw, 29px);
  height: clamp(22px, 1.8vw, 29px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a0b0f;
  color: #fff;
  font-style: normal;
  font-size: clamp(9px, .72vw, 12px);
  font-weight: 950;
}

.metric small {
  display: block;
  font-size: clamp(7px, .56vw, 9px);
  line-height: 1.1;
  font-weight: 850;
}

.metric b {
  display: block;
  margin-top: 2px;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.045em;
}

.phone {
  position: relative;
  aspect-ratio: 9 / 16;
  border: clamp(6px, .58vw, 9px) solid #0a0b0f;
  border-radius: clamp(24px, 2vw, 34px);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
  padding: clamp(24px, 2.2vw, 32px) 10px 12px;
  text-align: center;
  overflow: hidden;
}

.notch {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 44%;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a0b0f;
}

.phone img {
  width: 34px;
  max-width: 32%;
  height: auto;
}

.phone > b {
  display: block;
  margin: 7px 0 5px;
  font-size: clamp(10px, .82vw, 13px);
  line-height: 1.05;
  font-weight: 950;
}

.phone > small {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f2f3f5;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
  font-size: 7px;
  font-weight: 850;
}

.phone-gauge {
  width: 54%;
  aspect-ratio: 1;
  margin: clamp(9px, 1vw, 14px) auto 5px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 54%, transparent 55%),
    repeating-conic-gradient(#0a0b0f 0 5deg, transparent 5deg 10deg);
}

.phone-gauge strong {
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: .9;
  font-weight: 950;
}

.phone-gauge strong span {
  font-size: .43em;
}

.phone-gauge em {
  display: block;
  font-size: 5px;
  font-style: normal;
  font-weight: 950;
}

.phone label {
  display: block;
  font-size: 6px;
  font-weight: 950;
}

.phone u {
  display: inline-block;
  margin: 3px 0 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #0a0b0f;
  color: #fff;
  text-decoration: none;
  font-size: 7px;
  font-weight: 850;
}

.phone p {
  margin: 5px 0 0;
  padding: 6px 7px;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px #e5e7eb;
  font-size: 7px;
}

.phone p span {
  font-weight: 800;
}

.phone p b {
  white-space: nowrap;
}

.stats {
  width: min(100%, 1410px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  padding: clamp(11px, 1.5vh, 18px) clamp(18px, 3vw, 46px);
  border-radius: clamp(18px, 1.5vw, 25px);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow), inset 0 0 0 1px #e8e9ed;
}

.stats > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
  padding-inline: clamp(7px, 1.45vw, 24px);
}

.stats > div + div {
  border-left: 1px solid #d2d5dc;
}

.stats i {
  flex: 0 0 auto;
  width: clamp(36px, 3vw, 52px);
  height: clamp(36px, 3vw, 52px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #c9ccd3;
  background: #fff;
  font-style: normal;
  font-size: clamp(14px, 1.18vw, 20px);
  font-weight: 950;
}

.stats small,
.stats em {
  display: block;
}

.stats small {
  font-size: clamp(8px, .68vw, 11px);
  line-height: 1.05;
  font-weight: 950;
}

.stats b {
  display: block;
  font-size: clamp(22px, 1.85vw, 33px);
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.05em;
}

.stats em {
  color: #616670;
  font-size: clamp(9px, .74vw, 13px);
  font-style: normal;
  line-height: 1.1;
}

.actions {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
}

.btn {
  min-height: clamp(48px, 5.7vh, 64px);
  min-width: min(365px, 38vw);
  padding: 10px clamp(22px, 2.5vw, 38px);
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 900;
  letter-spacing: -.035em;
}

.primary {
  background: #0a0b0f;
  color: #fff;
  box-shadow: 0 15px 31px rgba(0,0,0,.17);
}

.secondary {
  border: 1px solid #bfc2c8;
  background: #fff;
  cursor: not-allowed;
}

.secondary small {
  display: block;
  font-size: .78em;
  line-height: .92;
}

.desktop-icon {
  width: 22px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 3px;
  position: relative;
}

.desktop-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  box-shadow: 0 -4px 0 -1px currentColor;
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 24px solid #34a853;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  position: relative;
}

.play-icon::before,
.play-icon::after {
  content: "";
  position: absolute;
  left: -24px;
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
}

.play-icon::before {
  top: -14px;
  border-bottom: 14px solid #4285f4;
}

.play-icon::after {
  bottom: -14px;
  border-top: 14px solid #fbbc04;
}

.note {
  margin: 0;
  text-align: center;
  color: #6b707a;
  font-size: clamp(12px, .94vw, 16px);
}

@media (max-height: 780px) and (min-width: 1021px) {
  .page {
    min-height: 600px;
    gap: 7px;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .topbar {
    height: 44px;
  }

  .brand img {
    width: 120px;
  }

  .brand strong {
    font-size: 27px;
  }

  .copy p {
    margin-bottom: 4px;
  }

  .copy h1 {
    font-size: clamp(44px, 4.35vw, 68px);
  }

  .copy h2 {
    margin-top: 6px;
    font-size: clamp(14px, 1.05vw, 19px);
  }

  .product {
    height: min(100%, 54vh);
  }

  .previews {
    grid-template-columns: minmax(0, 1fr) 142px;
  }

  .dash-main {
    min-height: 78px;
  }

  .metric {
    min-height: 39px;
  }

  .metric b {
    font-size: 16px;
  }

  .stats {
    padding-block: 10px;
  }

  .btn {
    min-height: 48px;
  }
}

@media (max-width: 1020px) {
  body {
    overflow-y: auto;
  }

  .page {
    height: auto;
    min-height: 100svh;
  }

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

  .product-panel {
    min-height: 360px;
    order: 2;
  }

  .content-panel {
    order: 1;
  }

  .copy {
    text-align: center;
  }

  .product {
    max-height: 380px;
  }

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

  .stats > div:nth-child(3) {
    border-left: 0;
  }

  .stats > div:nth-child(n+3) {
    border-top: 1px solid #d2d5dc;
    padding-top: 12px;
    margin-top: 12px;
  }
}

@media (max-width: 680px) {
  .page {
    padding: 16px 14px 22px;
  }

  .topbar {
    justify-content: center;
    height: auto;
  }

  .brand {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .brand img {
    width: 112px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand span {
    height: 26px;
  }

  .copy h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .copy h2 {
    font-size: 15px;
  }

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

  .dashboard {
    padding: 14px;
  }

  .dash-main {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .phone {
    width: min(220px, 72vw);
    justify-self: center;
  }

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

  .stats > div,
  .stats > div + div {
    border-left: 0;
    border-top: 1px solid #d2d5dc;
    padding: 12px 0;
    margin: 0;
  }

  .stats > div:first-child {
    border-top: 0;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: min(100%, 420px);
    min-width: 0;
  }
}
