:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-muted: #eef3ff;
  --text: #132238;
  --text-soft: #5b6b81;
  --line: #dbe4f0;
  --primary: #2463eb;
  --primary-dark: #1748b5;
  --accent: #ff7a1a;
  --shadow: 0 24px 60px rgba(19, 34, 56, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/Inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/Inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/Inter-700.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/Inter-800.ttf") format("truetype");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

body.is-ready .hero-intro {
  animation: fade-up 0.8s ease-out both;
}

body.is-ready .hero-stage {
  animation: fade-up 1s ease-out 0.14s both;
}

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

button,
input,
select {
  font: inherit;
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.main-nav a,
.footer-links a,
.logo {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid,
.cta-grid,
.footer-grid {
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.14);
  color: #cfe0ff;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1 {
  margin-top: 20px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.info-card p,
.step-card p,
.benefit-card p,
.cta-copy p,
.site-footer p,
.comparison-card li,
.pricing-list li,
.form-note {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-text {
  margin-top: 22px;
  font-size: 1.08rem;
  max-width: 680px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(19, 34, 56, 0.16);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #4d88ff);
  box-shadow: 0 12px 24px rgba(36, 99, 235, 0.26);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.button-full {
  width: 100%;
}

.hero-features {
  margin-top: 26px;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.hero-features li {
  animation: fade-up 0.6s ease both;
}

.hero-features li:nth-child(1) {
  animation-delay: 0.18s;
}

.hero-features li:nth-child(2) {
  animation-delay: 0.28s;
}

.hero-features li:nth-child(3) {
  animation-delay: 0.38s;
}

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

.device-card {
  position: absolute;
  inset: 50px 20px 80px 60px;
  background: var(--surface);
  border: 1px solid rgba(219, 228, 240, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floating-card 7s ease-in-out infinite;
}

.device-toolbar {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.device-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cad6ea;
}

.device-content {
  height: calc(100% - 43px);
  padding: 22px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef3ff 100%);
}

.store-panel {
  height: 100%;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #f4f8ff 100%);
  border: 1px solid rgba(219, 228, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.store-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.55) 50%, transparent 75%);
  transform: translateX(-120%);
  animation: shimmer 4.6s ease-in-out infinite;
}

.store-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(36, 99, 235, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.store-title {
  margin-top: 14px;
  font-weight: 800;
  font-size: 1.55rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.store-item {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: linear-gradient(145deg, #d9e8ff, #f7fbff);
  border: 1px solid #d4def0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.store-item:nth-child(1) {
  animation: pulse-tile 3.6s ease-in-out infinite;
}

.store-item:nth-child(2) {
  animation: pulse-tile 3.6s ease-in-out 0.5s infinite;
}

.store-item:nth-child(3) {
  animation: pulse-tile 3.6s ease-in-out 1s infinite;
}

.store-item:nth-child(4) {
  animation: pulse-tile 3.6s ease-in-out 1.5s infinite;
}

.product {
  position: absolute;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0f2340;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.product-shirt {
  top: 0;
  right: 16px;
  width: 138px;
  height: 150px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ff9c4e, var(--accent));
  animation: float-product-a 6s ease-in-out infinite;
}

.product-mug {
  bottom: 24px;
  left: 20px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: linear-gradient(180deg, #a8c5ff, #dce8ff);
  animation: float-product-b 5.2s ease-in-out infinite;
}

.product-hoodie {
  right: 12px;
  bottom: 0;
  width: 150px;
  height: 172px;
  border-radius: 36px;
  background: linear-gradient(180deg, #ffffff, #eaf1ff);
  border: 1px solid #d7e2f3;
  animation: float-product-c 6.4s ease-in-out infinite;
}

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

.section-alt {
  background: rgba(255, 255, 255, 0.55);
}

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

.section-heading h2 {
  margin-top: 14px;
}

.comparison-grid,
.audience-grid,
.steps-grid,
.pricing-grid,
.benefits-grid {
  display: grid;
  gap: 22px;
}

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

.comparison-card,
.info-card,
.step-card,
.pricing-card,
.benefit-card,
.lead-form {
  background: var(--surface);
  border: 1px solid rgba(219, 228, 240, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.comparison-card,
.info-card,
.step-card,
.pricing-card,
.benefit-card,
.lead-form,
.section-heading,
.cta-copy,
.footer-grid > div,
.footer-bottom {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.5s ease;
}

.comparison-card,
.info-card,
.step-card,
.pricing-card,
.benefit-card {
  padding: 28px;
}

.comparison-card h3,
.info-card h3,
.step-card h3,
.pricing-card h3,
.benefit-card h3 {
  margin-bottom: 14px;
}

.comparison-card:hover,
.info-card:hover,
.step-card:hover,
.pricing-card:hover,
.benefit-card:hover,
.lead-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(19, 34, 56, 0.14);
  border-color: rgba(36, 99, 235, 0.22);
}

.comparison-card ul,
.pricing-list {
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.comparison-card-muted {
  background: #f8fafc;
}

.comparison-card-accent {
  background: linear-gradient(180deg, #eef4ff 0%, #f9fbff 100%);
}

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

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

.icon-circle,
.step-number,
.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.icon-circle {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  background: #e8f0ff;
  color: var(--primary);
}

.step-number {
  margin-bottom: 16px;
  padding: 8px 12px;
  background: #eef3ff;
  color: var(--primary);
  font-size: 0.9rem;
}

.pricing-badge {
  margin-bottom: 18px;
  padding: 8px 12px;
  background: #eff4fb;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.pricing-card-featured {
  position: relative;
  background: linear-gradient(180deg, #1f5ae0 0%, #1748b5 100%);
  color: #fff;
  transform: translateY(-12px);
}

.pricing-card-featured .pricing-list li,
.pricing-card-featured .pricing-badge,
.pricing-card-featured h3 {
  color: #fff;
}

.pricing-badge-featured {
  background: rgba(255, 255, 255, 0.14);
}

.cta-section {
  background: linear-gradient(135deg, #122749, #2463eb);
  color: #fff;
}

.cta-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.lead-form {
  padding: 28px;
}

.form-status {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: #0f5132;
  background: #d1fae5;
  border: 1px solid #8fe1bb;
}

.form-status.is-error {
  color: #842029;
  background: #fde2e4;
  border: 1px solid #f2a8b0;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 600;
}

.lead-form span {
  font-size: 0.95rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(219, 228, 240, 0.9);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
}

.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
}

.site-footer {
  padding: 34px 0 26px;
  background: #0f1b2e;
  color: #dbe7f7;
}

[data-animate] {
  opacity: 0;
  transform: translateY(32px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="left"] {
  transform: translate(-28px, 24px);
}

[data-animate="right"] {
  transform: translate(28px, 24px);
}

[data-animate="zoom"] {
  transform: translateY(24px) scale(0.96);
}

[data-animate="left"].is-visible,
[data-animate="right"].is-visible,
[data-animate="zoom"].is-visible {
  transform: translateY(0) scale(1);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floating-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-product-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(-10px, -14px, 0) rotate(2deg);
  }
}

@keyframes float-product-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, -12px, 0);
  }
}

@keyframes float-product-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(3deg);
  }
  50% {
    transform: translate3d(-8px, -16px, 0) rotate(-2deg);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%);
  }
  55%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes pulse-tile {
  0%,
  100% {
    transform: scale(1);
    box-shadow: none;
  }
  50% {
    transform: scale(1.03);
    box-shadow: inset 0 0 0 1px rgba(36, 99, 235, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  color: #fff;
}

.footer-links {
  margin-top: 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(219, 231, 247, 0.12);
}

@media (max-width: 1080px) {
  .hero-grid,
  .cta-grid,
  .steps-grid,
  .audience-grid,
  .pricing-grid,
  .benefits-grid,
  .footer-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    transform: none;
  }

  .hero-visual {
    min-height: 460px;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 12px;
  }

  .hero {
    padding-top: 42px;
  }

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

  .device-card {
    inset: 52px 0 72px;
  }

  .product-shirt,
  .product-hoodie {
    width: 110px;
    height: 130px;
  }

  .product-mug {
    width: 94px;
    height: 94px;
  }

  .lead-form,
  .comparison-card,
  .info-card,
  .step-card,
  .pricing-card,
  .benefit-card {
    padding: 22px;
  }
}
