:root {
  color-scheme: light;
  --ink: #071112;
  --navy: #111643;
  --plum: #45205d;
  --paper: #fffaf2;
  --white: #ffffff;
  --text: #151616;
  --muted: #5d6568;
  --line: rgba(17, 22, 67, 0.14);
  --teal: #10a7a0;
  --cyan: #23c3f0;
  --coral: #ff5f58;
  --pink: #f154a6;
  --violet: #7657ff;
  --orange: #ff9c2f;
  --yellow: #ffd166;
  --lime: #8bd450;
  --shadow: 0 24px 70px rgba(20, 18, 45, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  min-height: 74px;
  padding: 14px 52px;
  background: rgba(7, 17, 18, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  color: #fff;
}

.brand,
.main-nav,
.header-actions,
.hero-actions,
.hero-pills,
.cloud-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 900;
  font-size: 1.08rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--yellow);
  color: #201400;
  font-weight: 1000;
  font-size: 0.8rem;
}

.main-nav {
  justify-content: center;
  gap: 30px;
  min-width: 0;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 750;
}

.main-nav a:hover {
  color: #fff;
}

.header-actions {
  gap: 10px;
  flex-shrink: 0;
}

.language-toggle,
.header-cta,
.primary-button,
.secondary-button {
  min-height: 42px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.language-toggle {
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 95, 88, 0.3);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.primary-button:hover,
.header-cta:hover {
  background: #e84742;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 64px 52px;
  color: #fff;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 18, 0.98) 0%, rgba(7, 17, 18, 0.84) 34%, rgba(7, 17, 18, 0.32) 66%, rgba(7, 17, 18, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 17, 18, 0.88) 0%, rgba(7, 17, 18, 0.08) 48%, rgba(7, 17, 18, 0.54) 100%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 28px;
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
  justify-content: start;
  min-width: 0;
}

.hero-copy-block {
  max-width: 760px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 6.4rem;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 28px;
}

.hero-pills {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
}

.product-preview {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.preview-top,
.preview-tabs,
.preview-screen,
.mock-header,
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-top span,
.preview-queue span,
.mock-header span,
.mock-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-screen {
  align-items: stretch;
  min-height: 270px;
}

.preview-camera {
  flex: 1;
  display: grid;
  place-items: end start;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(35, 195, 240, 0.95), rgba(241, 84, 166, 0.78)),
    url("/assets/hero-selfiebox.png");
  background-size: cover;
  background-position: center;
}

.preview-camera span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 17, 18, 0.62);
  color: #fff;
  font-weight: 900;
}

.preview-queue {
  width: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(7, 17, 18, 0.72);
}

.preview-queue strong {
  color: #fff;
}

.preview-tabs {
  flex-wrap: wrap;
}

.preview-tabs span {
  flex: 1;
  min-width: 78px;
  padding: 10px 8px;
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.83rem;
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proof-item {
  display: grid;
  gap: 7px;
  min-height: 128px;
  padding: 28px 48px;
  background: var(--paper);
}

.proof-item strong {
  color: var(--navy);
  font-size: 1.45rem;
}

.proof-item span {
  color: var(--muted);
  line-height: 1.5;
}

.section,
.cta-section {
  padding: 104px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.section-white {
  background: var(--paper);
  color: var(--text);
}

.section-candy {
  background: #fbf1ff;
  color: var(--text);
}

.section-ink,
.cta-section {
  background: var(--ink);
  color: #fff;
}

.section-pricing {
  background: #f0f8ff;
}

.section-heading {
  width: min(810px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.wide-heading {
  width: min(980px, 100%);
}

.section-heading p:not(.section-kicker),
.split-section p,
.cta-layout p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.05rem;
}

.section-ink .section-heading p:not(.section-kicker),
.section-ink .split-section p,
.cta-layout p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.showcase-card,
.experience-card,
.price-card,
.operator-grid article {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-card {
  min-height: 330px;
  padding: 28px;
  color: #fff;
  display: grid;
  align-content: space-between;
}

.showcase-card p,
.experience-card p {
  margin-bottom: 0;
  line-height: 1.65;
}

.feature-number {
  font-size: 0.85rem;
  font-weight: 1000;
  opacity: 0.78;
}

.color-coral {
  background: var(--coral);
}

.color-blue {
  background: var(--cyan);
  color: #041b24;
}

.color-yellow {
  background: var(--yellow);
  color: #261800;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
}

.experience-card {
  min-height: 250px;
  padding: 24px;
  color: #fff;
}

.experience-card span {
  display: inline-flex;
  margin-bottom: 48px;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
}

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

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

.mint {
  background: #27b88b;
}

.orange {
  background: var(--orange);
  color: #291300;
}

.cyan {
  background: #18b7cc;
  color: #041b24;
}

.lime {
  background: var(--lime);
  color: #132000;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 72px;
  align-items: center;
}

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

.on-dark {
  background: var(--yellow);
  color: #201400;
  box-shadow: 0 14px 34px rgba(255, 209, 102, 0.22);
}

.on-dark:hover {
  background: #f4c24d;
}

.on-dark-outline {
  color: #fff;
}

.delivery-mock {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  background: #121b1f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.mock-header {
  min-height: 84px;
  padding: 16px;
  border-radius: 8px;
  background: #2430a8;
}

.mock-row {
  min-height: 58px;
  padding: 0 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.mock-row.accent {
  background: var(--teal);
}

.mock-row strong,
.mock-header strong {
  color: #fff;
}

.operator-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.operator-grid article {
  min-height: 210px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(17, 22, 67, 0.1);
}

.operator-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.25rem;
}

.operator-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.price-card {
  min-height: 360px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(17, 22, 67, 0.1);
}

.featured-plan {
  background: var(--navy);
  color: #fff;
}

.plan-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(16, 167, 160, 0.14);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-plan .plan-label {
  background: var(--yellow);
  color: #201400;
}

.price-card p,
.price-card li {
  color: var(--muted);
  line-height: 1.65;
}

.featured-plan p,
.featured-plan li {
  color: rgba(255, 255, 255, 0.78);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 21px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.featured-plan li::before {
  background: var(--yellow);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 48px;
  border-radius: 8px;
  background: #1e255f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.cta-layout h2 {
  max-width: 780px;
  margin-bottom: 16px;
}

.cta-layout p:not(.section-kicker) {
  max-width: 680px;
}

.site-footer {
  padding: 26px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 14px 24px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-content: end;
    min-width: 0;
  }

  .hero {
    padding: 104px 24px 42px;
  }

  .hero-layout,
  .split-section,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .product-preview {
    max-width: 560px;
  }

  h1 {
    font-size: 5.6rem;
  }

  h2 {
    font-size: 3rem;
  }

  .proof-strip,
  .feature-showcase,
  .experience-grid,
  .operator-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    gap: 12px;
    padding: 10px 18px;
  }

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

  .hero {
    min-height: auto;
    padding: 92px 18px 30px;
  }

  .hero-image {
    object-position: 68% center;
  }

  h1 {
    font-size: 3.05rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 2.22rem;
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
  }

  .hero-actions,
  .hero-actions a,
  .cloud-actions,
  .cloud-actions a,
  .cta-layout a {
    width: 100%;
  }

  .proof-strip,
  .feature-showcase,
  .experience-grid,
  .operator-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    padding: 24px 20px;
  }

  .section,
  .cta-section {
    padding: 68px 0;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .preview-screen {
    flex-direction: column;
  }

  .preview-queue {
    width: 100%;
  }

  .showcase-card,
  .experience-card,
  .price-card {
    min-height: auto;
  }

  .experience-card span {
    margin-bottom: 34px;
  }

  .delivery-mock,
  .cta-layout {
    padding: 20px;
  }

  .footer-layout {
    flex-direction: column;
  }
}
