:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6678;
  --soft: #f5f8fb;
  --line: #dbe4ec;
  --panel: #ffffff;
  --accent: #00a6b4;
  --accent-strong: #007a88;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.12);
  --radius: 8px;
  --wrap: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: #ffffff;
  color: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 228, 236, 0.76);
  backdrop-filter: saturate(180%) blur(18px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.95rem;
}

.nav-links {
  gap: 24px;
  font-size: 0.96rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.hero,
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 68px);
  padding: 76px 0 88px;
}

.product-hero {
  min-height: auto;
  padding-top: 92px;
}

.hero-copy,
.product-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.25rem, 10vw, 5.6rem);
}

.product-copy h1,
.contact-hero h1,
.policy h1 {
  max-width: none;
}

.product-copy h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

h3 {
  font-size: 1.1rem;
}

.lede {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2.1vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.email-link:hover {
  background: #243041;
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  background: var(--soft);
}

.device-art,
.product-panel {
  display: grid;
  justify-items: center;
}

.device-art {
  justify-self: center;
  width: min(100%, 420px);
  padding: 18px;
  border-radius: 36px;
  background: #111827;
  box-shadow: var(--shadow);
}

.screen,
.screenshot-slot,
.product-screenshot {
  position: relative;
  overflow: hidden;
}

.device-art .screen,
.screenshot-slot .screen {
  width: 100%;
  min-height: 520px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.48), transparent 16%),
    linear-gradient(180deg, #8ee7f0 0%, #1aa9bd 48%, #064d68 100%);
}

.screenshot-slot {
  width: min(100%, 390px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.icon-showcase {
  display: grid;
  width: min(100%, 390px);
  min-height: 390px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 34%, rgba(0, 166, 180, 0.18), transparent 36%),
    linear-gradient(180deg, #ffffff, var(--soft));
  box-shadow: var(--shadow);
}

.icon-showcase img {
  display: block;
  width: min(66%, 256px);
  height: auto;
  border-radius: 22%;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.22);
}

.product-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.bubble {
  position: absolute;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

.b1 {
  width: 40px;
  height: 40px;
  left: 18%;
  top: 20%;
}

.b2 {
  width: 22px;
  height: 22px;
  right: 24%;
  top: 32%;
}

.b3 {
  width: 58px;
  height: 58px;
  right: 12%;
  bottom: 22%;
}

.penguin {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 112px;
  height: 142px;
  transform: translate(-50%, -50%) rotate(10deg);
  border-radius: 58px 58px 48px 48px;
  background: #17202c;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.penguin::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 32px;
  bottom: 16px;
  border-radius: 48px 48px 38px 38px;
  background: #ffffff;
}

.penguin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 55px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 18px solid #ffb020;
}

.penguin-face::before,
.penguin-face::after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111827;
}

.penguin-face::before {
  left: 40px;
}

.penguin-face::after {
  right: 40px;
}

.coral,
.ice-block {
  position: absolute;
  border-radius: 8px;
}

.coral {
  bottom: -18px;
  width: 78px;
  height: 112px;
  background: #ff6b6b;
}

.coral::before,
.coral::after {
  content: "";
  position: absolute;
  bottom: 28px;
  width: 28px;
  height: 72px;
  border-radius: 18px;
  background: inherit;
}

.coral::before {
  left: -18px;
  transform: rotate(-20deg);
}

.coral::after {
  right: -18px;
  transform: rotate(20deg);
}

.coral-left {
  left: 12%;
}

.coral-right {
  right: 8%;
  height: 88px;
  background: #ffb020;
}

.ice-block {
  width: 84px;
  height: 36px;
  background: rgba(234, 250, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.ice-one {
  left: 12%;
  top: 38%;
  transform: rotate(-16deg);
}

.ice-two {
  right: 10%;
  top: 58%;
  transform: rotate(18deg);
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.app-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.app-card,
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.app-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
}

.app-card p,
.feature-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.app-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
  object-fit: cover;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.feature-band {
  background: var(--soft);
}

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

.feature-grid article {
  padding: 22px;
}

.contact-hero {
  min-height: calc(100vh - 68px);
  padding: 112px 0;
}

.contact-hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
}

.email-link {
  margin-top: 32px;
  font-size: 1.05rem;
}

.policy-page {
  background: linear-gradient(180deg, var(--soft), #ffffff 260px);
}

.policy {
  max-width: 820px;
  padding: 76px 0 96px;
}

.policy h1 {
  font-size: clamp(2.8rem, 7vw, 4.6rem);
}

.policy-meta {
  margin: 18px 0 42px;
  color: var(--muted);
}

.policy section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.policy h2 {
  font-size: clamp(1.55rem, 4vw, 2.2rem);
}

.policy h3 {
  margin-top: 22px;
}

.policy p,
.policy li {
  color: #344054;
  font-size: 1.02rem;
}

.policy ul {
  padding-left: 1.4rem;
}

.policy a {
  color: var(--accent-strong);
  font-weight: 700;
}

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

.footer-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.94rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--ink);
}

@media (max-width: 840px) {
  .hero,
  .product-hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding: 64px 0 72px;
  }

  h1 {
    max-width: none;
  }

  .device-art {
    width: min(100%, 360px);
  }

  .device-art .screen,
  .screenshot-slot .screen {
    min-height: 430px;
  }

  .app-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 28px));
  }

  .nav {
    min-height: 64px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero,
  .product-hero,
  .contact-hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero-actions,
  .button,
  .email-link {
    width: 100%;
  }

  .app-card {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .icon-showcase {
    min-height: 320px;
  }
}
