:root {
  --ink: #07122f;
  --muted: #667085;
  --line: #e7eef5;
  --cyan: #11c8f4;
  --cyan-dark: #1267ff;
  --coral: #ff705f;
  --aqua: #e9fbfb;
  --paper: #ffffff;
  --soft: #f7fbff;
  --shadow: 0 24px 70px rgba(17, 42, 82, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(17, 200, 244, 0.18), transparent 34%),
    radial-gradient(circle at 6% 58%, rgba(255, 112, 95, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfeff 0%, #f8fcff 48%, #ffffff 100%);
}

img { max-width: 100%; display: block; }

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

.section-pad {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px min(6vw, 72px);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 238, 245, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  box-shadow: 0 12px 24px rgba(18, 103, 255, 0.18);
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav a { transition: color 0.2s ease; }
.nav a:hover { color: var(--cyan-dark); }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 48px;
  padding-top: 70px;
  padding-bottom: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 540px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover { transform: translateY(-2px); }

.primary {
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  box-shadow: 0 18px 38px rgba(18, 103, 255, 0.22);
}

.ghost {
  background: white;
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 44px 0 22px 70px;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(17, 200, 244, 0.14), rgba(255, 255, 255, 0.35));
  transform: skewY(-6deg);
}

.slant-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow);
}

.main-shot {
  width: min(430px, 78%);
  margin-left: auto;
  transform: rotate(5deg) translateY(26px);
}

.main-shot img { width: 100%; }

.mini-panel {
  position: absolute;
  left: 18px;
  bottom: 54px;
  width: 240px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(7, 18, 47, 0.12);
  backdrop-filter: blur(16px);
}

.mini-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 8px;
  border-radius: 999px;
}

.cyan { background: var(--cyan); }

.product-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: end;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 16px 50px rgba(7, 18, 47, 0.06);
}

.product-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-list span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #164062;
  background: var(--aqua);
  font-size: 13px;
  font-weight: 800;
}

.features {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding-top: 86px;
  padding-bottom: 40px;
}

.feature-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 16px 44px rgba(7, 18, 47, 0.06);
}

.feature-card.tall {
  grid-row: span 2;
  min-height: 478px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(140deg, #ffffff 0%, #effdff 100%);
}

.feature-card.coral { background: linear-gradient(145deg, #fff, #fff1ef); }
.feature-card.cyan { background: linear-gradient(145deg, #fff, #effaff); }

.feature-number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--coral);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery {
  padding-top: 44px;
  padding-bottom: 88px;
}

.gallery-intro {
  max-width: 650px;
  margin-bottom: 30px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.screen-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: white;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.screen-card:hover { transform: translateY(-6px); }
.screen-card.rotate-left { transform: rotate(-2deg); }
.screen-card.rotate-right { transform: rotate(2deg); }
.screen-card.lift { margin-top: 44px; }

.screen-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 42px;
  border-radius: 36px;
  color: white;
  background:
    linear-gradient(120deg, rgba(17, 200, 244, 0.95), rgba(18, 103, 255, 0.96)),
    var(--cyan-dark);
  box-shadow: 0 28px 70px rgba(18, 103, 255, 0.24);
}

.contact .eyebrow { color: rgba(255,255,255,0.78); }
.contact p { margin-bottom: 0; color: rgba(255,255,255,0.82); line-height: 1.65; }

.mail-card {
  display: block;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 26px;
  background: rgba(255,255,255,0.16);
}

.mail-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mail-card strong {
  word-break: break-word;
  font-size: clamp(18px, 2.3vw, 28px);
  letter-spacing: -0.04em;
}

.footer {
  padding: 30px 20px 38px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 880px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .hero, .product-strip, .features, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 46px; gap: 24px; }
  .hero-visual { min-height: 560px; }
  .main-shot { margin: 0 auto; width: min(390px, 82%); }
  .feature-card.tall { min-height: 280px; }
  .screen-grid { grid-template-columns: 1fr; max-width: 430px; margin: 0 auto; }
  .screen-card.lift { margin-top: 0; }
  .screen-card.rotate-left, .screen-card.rotate-right { transform: none; }
}

@media (max-width: 560px) {
  .section-pad { width: min(100% - 28px, 1120px); }
  .brand { font-size: 14px; }
  .nav { gap: 16px; font-size: 13px; }
  h1 { font-size: 42px; }
  .hero-text { font-size: 16px; }
  .hero-visual { min-height: 480px; }
  .mini-panel { left: 0; bottom: 18px; width: 210px; }
  .product-strip, .contact { padding: 24px; border-radius: 26px; }
  .features { padding-top: 56px; }
  .feature-card { padding: 24px; border-radius: 24px; }
  .gallery { padding-bottom: 58px; }
}

/* Generator safety overrides */
h1,
.hero h1,
[class*="hero"] h1 {
  font-size: clamp(2.35rem, 5vw, 4rem) !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  h1,
  .hero h1,
  [class*="hero"] h1 {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
    line-height: 1.08 !important;
  }
}

.user-policy-section {
  background: #f7f7fb !important;
  color: #191927 !important;
  padding: 56px 18px !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.user-policy-inner {
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 56px 72px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.user-policy-inner h2 {
  margin: 0 0 48px !important;
  color: #10101f !important;
  font-size: 30px !important;
  line-height: 1.2 !important;
  text-align: center !important;
  font-weight: 900 !important;
}

.user-policy-inner h3 {
  margin: 34px 0 14px !important;
  color: #000 !important;
  font-size: 22px !important;
  line-height: 1.3 !important;
  font-weight: 900 !important;
}

.user-policy-inner p {
  margin: 0 0 14px !important;
  color: #555 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}

.user-policy-inner a {
  color: #d83260 !important;
  text-decoration: underline !important;
}

@media (max-width: 720px) {
  .user-policy-inner {
    padding: 34px 22px !important;
  }
}
