@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #04040f;
  --bg2: #07071a;
  --card: rgba(255,255,255,0.025);
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --accent: #f32e40;
  --accent2: #f32e40;
  --glow: rgba(243,46,64,0.25);
  --text: #eeeeff;
  --textm: rgba(238,238,255,0.55);
  --textd: rgba(238,238,255,0.3);
}
html { scroll-behavior: auto; }
body { font-family: 'Sora', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ─── KEYFRAMES ─── */
@keyframes blob1 { 0%,100%{transform:translate(0,0) scale(1)} 40%{transform:translate(80px,-60px) scale(1.15)} 70%{transform:translate(-60px,80px) scale(.88)} }
@keyframes blob2 { 0%,100%{transform:translate(0,0) scale(1)} 35%{transform:translate(-100px,60px) scale(.8)} 65%{transform:translate(50px,-100px) scale(1.1)} }
@keyframes blob3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(60px,60px) scale(1.2)} }
@keyframes spotlight-in { 0%{opacity:0;transform:scale(.5) translate(-20%,-20%)} 100%{opacity:1;transform:scale(1) translate(0,0)} }
@keyframes word-in { 0%{opacity:0;filter:blur(8px);transform:translateY(8px)} 100%{opacity:1;filter:blur(0);transform:translateY(0)} }
@keyframes marquee-l { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes marquee-r { from{transform:translateX(-50%)} to{transform:translateX(0)} }
@keyframes float { 0%,100%{transform:translateY(0px)} 50%{transform:translateY(-14px)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes rot-angle { to { --angle: 360deg; } }
@keyframes beam-in { 0%{stroke-dashoffset:800;opacity:0} 20%{opacity:1} 100%{stroke-dashoffset:0;opacity:.6} }
@keyframes shimmer { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes reveal-up { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes kenburns { 0%{transform:scale(1) translate(0,0)} 100%{transform:scale(1.08) translate(-1%,-.5%)} }

/* ─── GRID PATTERN ─── */
.grid-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

/* ─── HERO BG IMAGE ─── */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: brightness(0.22) saturate(0.5);
  animation: kenburns 24s ease-in-out infinite alternate;
  transform-origin: center center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(4,4,15,0.35) 0%,
      rgba(4,4,15,0.1) 35%,
      rgba(4,4,15,0.55) 70%,
      rgba(4,4,15,1) 100%),
    linear-gradient(90deg,
      rgba(4,4,15,0.5) 0%,
      transparent 40%,
      transparent 60%,
      rgba(4,4,15,0.5) 100%);
}

/* ─── AURORA ─── */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform;
}
.blob1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(243,46,64,.38), transparent 70%); top: -180px; left: -120px; animation: blob1 22s ease-in-out infinite; }
.blob2 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(124,58,237,.28), transparent 70%); top: -120px; right: -200px; animation: blob2 28s ease-in-out infinite; }
.blob3 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(14,165,233,.2), transparent 70%); bottom: -100px; left: 35%; animation: blob3 20s ease-in-out infinite; }

/* ─── SPOTLIGHT ─── */
.spotlight {
  position: absolute; pointer-events: none; z-index: 1;
  top: -5%; left: 50%; transform: translateX(-50%);
  opacity: 0; animation: spotlight-in 1.4s ease 0.5s forwards;
}
.spotlight svg { width: 900px; height: 700px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1200px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px;
  background: rgba(4,4,15,0.6); backdrop-filter: blur(20px);
  border: 1px solid var(--border2); border-radius: 16px;
  z-index: 1000;
  transition: background .3s, border-color .3s;
}
nav.scrolled { background: rgba(4,4,15,0.88); border-color: rgba(255,255,255,0.1); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--glow); flex-shrink: 0;
}
.nav-logo-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 4.5; stroke-linecap: round; }
.nav-logo-name { font-size: 14px; font-weight: 700; color: var(--text); }
.nav-logo-tag { font-size: 9px; font-weight: 500; color: var(--accent); letter-spacing: .5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--textm); text-decoration: none; transition: color .2s, background .2s; }
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-cta {
  padding: 8px 18px; border-radius: 10px; font-size: 13px; font-weight: 700;
  background: var(--accent); color: #fff; text-decoration: none;
  box-shadow: 0 4px 16px var(--glow); transition: opacity .2s, transform .15s;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px max(24px, calc(50% - 600px)) 64px;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px; border-radius: 50px;
  border: 1px solid #3be0dc; background: rgba(243,46,64,.06);
  font-size: 12px; font-weight: 600; color: #3be0dc; letter-spacing: .3px;
  margin-bottom: 28px; animation: reveal-up .6s ease .2s both;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #3be0dc; box-shadow: 0 0 8px #3be0dc; animation: pulse 2s ease-in-out infinite; }
.hero-title {
  font-size: clamp(44px, 7vw, 96px); font-weight: 900; line-height: 1.02; letter-spacing: -3px;
  margin-bottom: 24px; position: relative; z-index: 2;
}
.hero-title .word { display: inline-block; opacity: 0; animation: word-in .5s ease forwards; }
.hero-title .word.space { width: .28em; }
.grad { background: linear-gradient(135deg, var(--accent), #f32e40, var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px); color: var(--textm); max-width: 620px;
  line-height: 1.65; margin-bottom: 40px; position: relative; z-index: 2;
  animation: reveal-up .6s ease .9s both;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 64px; position: relative; z-index: 2; animation: reveal-up .6s ease 1.1s both; }

/* Moving border button */
.btn-moving {
  position: relative; padding: 14px 28px; border-radius: 12px;
  font-size: 14px; font-weight: 700; color: #fff; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(4,4,15,.8); cursor: pointer;
  z-index: 0; overflow: hidden;
}
.btn-moving::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  background: conic-gradient(from var(--angle), #f32e40 0deg, #f32e40 60deg, #fff8 120deg, #7c3aed 180deg, #0ea5e9 240deg, #f32e40 360deg);
  animation: rot-angle 3s linear infinite;
}
.btn-moving::after { content: ''; position: absolute; inset: 1px; border-radius: calc(12px - 1px); background: rgba(6,6,20,.95); z-index: -1; }
.btn-ghost {
  padding: 14px 24px; border-radius: 12px; font-size: 14px; font-weight: 600;
  color: var(--textm); text-decoration: none; border: 1px solid var(--border2);
  background: transparent; transition: color .2s, border-color .2s, background .2s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border2); background: rgba(255,255,255,.04); }

/* Hero stats */
.hero-stats {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: center;
  border: 1px solid var(--border); border-radius: 16px; background: var(--card);
  backdrop-filter: blur(12px); padding: 24px 32px; gap: 0;
  animation: reveal-up .6s ease 1.3s both; position: relative; z-index: 2;
}
.hero-stat { text-align: center; padding: 0 32px; }
.hero-stat-num { font-size: 28px; font-weight: 900; letter-spacing: -1px; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-label { font-size: 11px; color: var(--textm); font-weight: 500; margin-top: 4px; white-space: nowrap; }
.hero-stat-div { width: 1px; height: 40px; background: var(--border); }


/* ─── MARQUEE ─── */
.marquee-section {
  padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0; overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(243,46,64,.025), transparent);
}
.marquee-section .section-label { justify-content: center; }
.marquee-section .section-label::before { display: none; }
.marquee-section .section-title { text-align: center; margin-bottom: 32px; }
.mq-row { overflow: hidden; will-change: transform; }
.marquee-inner { display: flex; gap: 0; animation: marquee-l 36s linear infinite; white-space: nowrap; }
.mq-r .marquee-inner  { animation: marquee-r 54s linear infinite; }
.mq-s .marquee-inner  { animation: marquee-l 22s linear infinite; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 28px; font-size: 14px; font-weight: 600; color: var(--textm);
  border-right: 1px solid var(--border); transition: color .2s;
}
.marquee-item:hover { color: var(--text); }
.marquee-item svg { width: 16px; height: 16px; opacity: .5; flex-shrink: 0; }
/* row depth variants */
.mq-row:nth-child(2) .marquee-item { font-size: 13px; color: rgba(238,238,255,.38); }
.mq-row:nth-child(2) .marquee-item svg { opacity: .3; }
.mq-row:nth-child(3) .marquee-item { font-size: 12px; color: rgba(238,238,255,.18); }
.mq-row:nth-child(3) .marquee-item svg { opacity: .18; }

/* ─── SECTION COMMONS ─── */
.section { padding: 64px max(24px, calc(50% - 660px)); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #3be0dc; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 900; letter-spacing: -2px; line-height: 1.08; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--textm); line-height: 1.65; max-width: 560px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay1 { transition-delay: .12s; }
.delay2 { transition-delay: .24s; }
.delay3 { transition-delay: .36s; }
.delay4 { transition-delay: .48s; }

/* ─── MIGRATION ─── */
.migration-header { text-align: center; margin-bottom: 40px; }
.migration-header .section-label { justify-content: center; }
.migration-header .section-label::before { display: none; }
.migration-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: start; margin-bottom: 40px; }
.mig-col { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.mig-col-head { display: flex; align-items: center; gap: 8px; padding: 16px 20px; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--border); }
.mig-col-head.old { background: rgba(224,48,48,.06); color: #e03030; border-bottom-color: rgba(224,48,48,.1); }
.mig-col-head.new { background: rgba(48,192,96,.06); color: #30c060; border-bottom-color: rgba(48,192,96,.1); }
.mig-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.mig-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: 12px; background: rgba(255,255,255,.02); }
.mig-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mig-icon.old { background: rgba(224,48,48,.1); }
.mig-icon.new { background: rgba(37,211,102,.1); }
.mig-item-title { font-size: 12px; font-weight: 700; margin-bottom: 2px; }
.mig-item-sub { font-size: 10px; color: var(--textd); line-height: 1.5; }
.mig-vs { display: flex; flex-direction: column; align-items: center; gap: 12px; padding-top: 80px; }
.mig-vs-line { width: 1px; flex: 1; background: var(--border); }
.mig-vs-badge { font-size: 11px; font-weight: 800; color: var(--textd); border: 1px solid var(--border); border-radius: 50px; padding: 6px 10px; }

/* ─── BENTO ─── */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 56px; }
.bento-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .2s;
  transform-style: preserve-3d; will-change: transform;
  cursor: default;
}
.bento-card:hover { border-color: var(--border2); }
.bento-card .card-glow {
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit; z-index: 0; opacity: 0;
  background: radial-gradient(circle 200px at var(--mx,50%) var(--my,50%), rgba(243,46,64,.06), transparent);
  transition: opacity .4s;
}
.bento-card:hover .card-glow { opacity: 1; }
.bento-card > * { position: relative; z-index: 1; }
.b8 { grid-column: span 8; }
.b4 { grid-column: span 4; }
.b6 { grid-column: span 6; }
.b12 { grid-column: span 12; }
.bento-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.bento-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ic-orange { background: rgba(243,46,64,.12); color: var(--accent); }
.ic-blue { background: rgba(77,138,255,.12); color: #4d8aff; }
.ic-green { background: rgba(48,192,96,.12); color: #30c060; }
.ic-red { background: rgba(224,48,48,.12); color: #e03030; }
.ic-purple { background: rgba(139,92,246,.12); color: #8b5cf6; }
.bento-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--textd); margin-bottom: 8px; }
.bento-title { font-size: 18px; font-weight: 800; letter-spacing: -.5px; line-height: 1.2; margin-bottom: 10px; }
.bento-desc { font-size: 13px; color: var(--textm); line-height: 1.6; }
.bento-deco { position: absolute; top: 0; right: 0; width: 180px; height: 180px; border-radius: 50%; filter: blur(60px); pointer-events: none; }
/* mini kanban */
.mini-kanban { display: flex; gap: 8px; margin-top: 20px; }
.mini-col { flex: 1; }
.mini-col-h { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; padding: 4px 8px; border-radius: 6px; margin-bottom: 6px; text-align: center; }
.mini-chip { height: 24px; border-radius: 6px; margin-bottom: 5px; background: rgba(255,255,255,.04); border: 1px solid var(--border); }
/* realtime */
.rt-event { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,.02); margin-top: 10px; border: 1px solid var(--border); }
.rt-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.rt-text { font-size: 11px; font-weight: 600; flex: 1; }
.rt-time { font-size: 10px; color: var(--textd); }
/* timer */
.timer-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.timer-name { font-size: 11px; font-weight: 600; }
.timer-badge { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.timer-ok { background: rgba(48,192,96,.1); color: #30c060; }
.timer-warn { background: rgba(243,46,64,.1); color: #f32e40; }
.timer-alert { background: rgba(224,48,48,.1); color: #e03030; }
/* wa bubble */
.wa-bubble { margin-top: 16px; padding: 12px 14px; background: rgba(37,211,102,.06); border: 1px solid rgba(37,211,102,.15); border-radius: 12px; font-size: 12px; color: var(--textm); line-height: 1.5; }
.wa-bubble .label { font-size: 10px; font-weight: 700; color: #25d366; margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
/* stats */
.stat-chips { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.stat-chip { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 10px; }
.stat-num { font-size: 16px; font-weight: 900; letter-spacing: -.5px; }
.stat-lbl { font-size: 10px; color: var(--textd); font-weight: 600; }

/* ─── HOW ─── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.steps { margin-top: 40px; }
.step { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 40px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--accent), transparent); }
.step-num-wrap { flex-shrink: 0; }
.step-num { width: 40px; height: 40px; border-radius: 12px; background: rgba(243,46,64,.1); border: 1px solid rgba(243,46,64,.25); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--accent); }
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--textm); line-height: 1.6; }
/* phone */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-glow-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.phone-glow-el { width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(243,46,64,.18), transparent 70%); }
.phone {
  width: 240px; background: #0a0a1e; border: 1px solid var(--border2); border-radius: 36px;
  padding: 16px; box-shadow: 0 40px 80px rgba(0,0,0,.8); animation: float 4s ease-in-out infinite;
  position: relative; z-index: 1;
}
.phone-notch { width: 80px; height: 20px; background: #080818; border-radius: 50px; margin: 0 auto 12px; }
.phone-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.phone-title { font-size: 12px; font-weight: 800; }
.phone-badge { font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 50px; background: rgba(243,46,64,.12); color: var(--accent); }
.phone-card { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 12px; padding: 10px; margin-bottom: 8px; }
.phone-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.phone-card-name { font-size: 10px; font-weight: 700; }
.phone-status { font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 50px; }
.phone-detail { font-size: 9px; color: var(--textd); }
.phone-timer { font-size: 9px; color: var(--textd); }
.phone-notify { margin-top: 6px; padding: 4px; background: rgba(37,211,102,.1); border-radius: 6px; font-size: 9px; font-weight: 600; color: #25d366; text-align: center; }

/* ─── TESTIMONIALS (infinite moving cards) ─── */
.testi-section { padding: 64px 0; overflow: hidden; }
.testi-header { text-align: center; padding: 0 24px; margin-bottom: 56px; }
.testi-header .section-label { justify-content: center; }
.testi-header .section-label::before { display: none; }
.testi-tracks { display: flex; flex-direction: column; gap: 16px; }
.testi-track { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.testi-inner { display: flex; gap: 16px; animation: marquee-l 40s linear infinite; }
.testi-inner.reverse { animation: marquee-r 40s linear infinite; }
.testi-card {
  flex-shrink: 0; width: 340px; padding: 24px; background: var(--card);
  border: 1px solid var(--border); border-radius: 16px;
  transition: border-color .3s;
}
.testi-card:hover { border-color: var(--border2); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.testi-stars svg { width: 13px; height: 13px; fill: #f32e40; }
.testi-text { font-size: 13px; color: var(--textm); line-height: 1.65; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 1px solid var(--border); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 13px; font-weight: 700; }
.testi-role { font-size: 10px; color: var(--textd); }

/* ─── CTA (background beams) ─── */
.cta-section { padding: 64px max(24px, calc(50% - 600px)); position: relative; overflow: hidden; }
.cta-beams { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cta-beams svg { position: absolute; width: 100%; height: 100%; }
.cta-inner {
  position: relative; z-index: 1; text-align: center;
  padding: 80px max(32px, calc(50% - 440px));
  background: rgba(4,4,15,.7); border: 1px solid var(--border2); border-radius: 28px;
  backdrop-filter: blur(20px);
}
.cta-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--accent); padding: 6px 14px; border: 1px solid rgba(243,46,64,.2); border-radius: 50px; background: rgba(243,46,64,.06); margin-bottom: 24px; }
.cta-title { font-size: clamp(36px,5vw,64px); font-weight: 900; letter-spacing: -2.5px; line-height: 1.02; margin-bottom: 20px; }
.cta-sub { font-size: 16px; color: var(--textm); line-height: 1.65; max-width: 520px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: var(--textd); }
.cta-note svg { width: 14px; height: 14px; fill: none; stroke: var(--textd); stroke-width: 1.8; stroke-linecap: round; }
/* contact inside CTA design */
.contact-cta-inner { padding: 60px !important; text-align: left !important; }
.contact-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-cta-left .cta-title { font-size: clamp(28px,3.5vw,48px); }
.contact-cta-left .cta-sub { margin: 0 0 32px; max-width: none; }
.contact-cta-form { display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 860px) {
  .contact-cta-inner { padding: 36px !important; }
  .contact-cta-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── FOOTER ─── */
footer {
  padding: 40px max(24px, calc(50% - 600px));
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo-icon { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; }
.footer-logo-icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 4.5; stroke-linecap: round; }
.footer-name { font-size: 13px; font-weight: 700; }
.footer-copy { font-size: 11px; color: var(--textd); }
.footer-links { display: flex; gap: 20px; }
.footer-link { font-size: 12px; color: var(--textd); text-decoration: none; transition: color .2s; }
.footer-link:hover { color: var(--textm); }

/* ─── PHOTO BAND ─── */
.photo-band { padding: 40px 0 60px; overflow: hidden; }
.photo-band .section-label { justify-content: center; }
.photo-band .section-label::before { display: none; }
.photo-band .section-title { text-align: center; margin-bottom: 32px; }
.photo-band-label { text-align: center; font-size: clamp(18px,2.5vw,26px); font-weight: 800; letter-spacing: -.6px; margin-bottom: 32px; padding: 0 24px; }
.photo-band-label span { background: linear-gradient(135deg, #fff 0%, var(--accent2) 50%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.photo-mosaic { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; grid-template-rows: 280px 220px; gap: 12px; max-width: 1440px; margin: 0 auto; padding: 0 max(16px,calc(50% - 720px)); }
.photo-tile { border-radius: 16px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,.06); }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.65) saturate(.8); transition: transform .7s ease, filter .4s ease; }
.photo-tile:hover img { transform: scale(1.06); filter: brightness(.85) saturate(1.05); }
.photo-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,4,15,.75) 0%, transparent 55%); }
.photo-tile-label { position: absolute; bottom: 14px; left: 16px; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: rgba(255,255,255,.82); text-shadow: 0 1px 6px rgba(0,0,0,.9); }
.pt-tall { grid-row: span 2; }

/* ─── BENTO IMAGE TILE ─── */
.bento-img { width: 100%; border-radius: 12px; overflow: hidden; margin-top: 20px; position: relative; border: 1px solid rgba(255,255,255,.06); }
.bento-img img { width: 100%; height: 140px; object-fit: cover; display: block; filter: brightness(.65) saturate(.8); transition: filter .4s, transform .5s; }
.bento-card:hover .bento-img img { filter: brightness(.82) saturate(1); transform: scale(1.04); }
.bento-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,4,15,.85) 0%, rgba(4,4,15,.1) 55%, transparent 100%); }

/* ─── HOW AMBIENT ─── */
.how-ambient-wrap { max-width: 1440px; margin: 0 auto 80px; padding: 0 max(16px,calc(50% - 720px)); }
.how-ambient-inner { border-radius: 24px; overflow: hidden; height: 420px; position: relative; border: 1px solid rgba(255,255,255,.06); }
.how-ambient-inner img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.45) saturate(.75); }

/* ─── DASH PREVIEW TILE ─── */
.dash-preview-tile { background: #07071a; cursor: default; }
.dash-preview { position: absolute; inset: 0; display: flex; flex-direction: column; transform-origin: top left; }
.dp-bar { display: flex; align-items: center; gap: 4px; padding: 6px 10px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.07); flex-shrink: 0; }
.dp-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dp-url { font-size: 8px; color: rgba(255,255,255,.3); margin-left: 6px; font-family: monospace; }
.dp-body { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; padding: 7px; flex: 1; overflow: hidden; }
.dp-col { background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05); border-radius: 6px; padding: 5px; overflow: hidden; }
.dp-col-h { font-size: 7px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; margin-bottom: 5px; }
.dp-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 5px; padding: 5px; margin-bottom: 4px; }
.dp-name { font-size: 7px; font-weight: 700; color: #eeeeff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dp-ph { font-size: 6px; color: rgba(238,238,255,.35); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dp-badge { display: inline-block; font-size: 6px; font-weight: 700; padding: 1px 5px; border-radius: 3px; margin-top: 3px; }
.dp-timer { font-size: 7px; color: rgba(238,238,255,.4); margin-top: 2px; font-family: monospace; }
.dp-notify { margin-top: 4px; padding: 3px 5px; background: rgba(37,211,102,.12); border-radius: 3px; font-size: 6px; font-weight: 700; color: #25d366; text-align: center; }
.dp-stats-body { display: flex; flex-direction: column; gap: 6px; padding: 7px; flex: 1; overflow: hidden; }
.dp-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; }
.dp-stat-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 6px; padding: 5px 4px; text-align: center; }
.dp-stat-num { font-size: 11px; font-weight: 900; letter-spacing: -.5px; line-height: 1; }
.dp-stat-lbl { font-size: 6px; color: rgba(238,238,255,.35); margin-top: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: .3px; }
.dp-bar-chart { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.dp-bar-row { display: flex; align-items: center; gap: 5px; }
.dp-bar-lbl { font-size: 7px; color: rgba(238,238,255,.4); width: 18px; flex-shrink: 0; font-weight: 600; }
.dp-bar-track { flex: 1; height: 8px; background: rgba(255,255,255,.04); border-radius: 99px; overflow: hidden; }
.dp-bar-fill { height: 100%; border-radius: 99px; }
.dp-bar-val { font-size: 7px; color: rgba(238,238,255,.4); width: 16px; text-align: right; flex-shrink: 0; }

/* ─── PRICING ─── */
.pricing-section { padding: 64px max(24px, calc(50% - 600px)); }
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-label::before { display: none; }

/* ─── CONTACT FORM ─── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--textm); text-transform: uppercase; letter-spacing: .6px; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 14px; color: var(--text); font-family: inherit; outline: none; transition: border-color .2s; resize: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(238,238,255,.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(243,46,64,.5); }
.form-group select option { background: #111; color: var(--text); }
.form-submit { background: linear-gradient(135deg, var(--accent), var(--accent2)); border: none; border-radius: 12px; padding: 14px 28px; font-size: 15px; font-weight: 700; color: #fff; cursor: pointer; transition: opacity .2s, transform .15s; letter-spacing: .3px; width: 100%; }
.form-submit:hover { opacity: .9; transform: translateY(-1px); }
@media (max-width: 860px) { .form-row { grid-template-columns: 1fr; } }

.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; }
.toggle-label { font-size: 13px; font-weight: 600; color: var(--textm); transition: color .2s; }
.toggle-label.active { color: var(--text); }
.toggle-save { font-size: 10px; font-weight: 700; color: #30c060; background: rgba(48,192,96,.1); border: 1px solid rgba(48,192,96,.2); padding: 2px 8px; border-radius: 99px; margin-left: 4px; }
.toggle-switch { position: relative; width: 44px; height: 24px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-track { position: absolute; inset: 0; background: rgba(255,255,255,.08); border: 1px solid var(--border2); border-radius: 99px; transition: background .3s; }
.toggle-switch input:checked ~ .toggle-track { background: var(--accent); border-color: var(--accent); }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: transform .3s cubic-bezier(.34,1.56,.64,1); box-shadow: 0 1px 4px rgba(0,0,0,.4); }
.toggle-switch input:checked ~ .toggle-thumb { transform: translateX(20px); }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; align-items: stretch; }

.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.price-features { flex: 1; }
.price-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.price-card.featured {
  border-color: rgba(243,46,64,.35);
  background: linear-gradient(160deg, rgba(243,46,64,.06) 0%, rgba(243,46,64,.03) 40%, var(--card) 100%);
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(243,46,64,.12), 0 0 0 1px rgba(243,46,64,.15);
}
.price-card.featured:hover { transform: translateY(-12px); }

/* moving border on featured */
.price-card.featured::before {
  content: ''; position: absolute; inset: -1px; border-radius: 25px; z-index: -1;
  background: conic-gradient(from var(--angle), transparent 70%, rgba(243,46,64,.6), rgba(243,46,64,.8), transparent);
  animation: rot-angle 4s linear infinite;
}

.price-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; box-shadow: 0 4px 16px rgba(243,46,64,.3);
}
.price-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 2s ease-in-out infinite; }

.price-name { font-size: 15px; font-weight: 700; color: var(--textm); margin-bottom: 6px; letter-spacing: .2px; }
.price-desc { font-size: 12px; color: var(--textd); line-height: 1.5; margin-bottom: 24px; }

.price-amount { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 4px; }
.price-currency { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.price-num { font-size: 52px; font-weight: 900; letter-spacing: -3px; line-height: 1; color: var(--text); transition: opacity .2s; }
.price-card.featured .price-num { background: linear-gradient(135deg, #fff 0%, var(--accent2) 60%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-period { font-size: 13px; color: var(--textd); margin-bottom: 8px; }
.price-annual-note { font-size: 11px; color: #30c060; min-height: 16px; margin-bottom: 24px; }

.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.price-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--textm); line-height: 1.4; }
.price-feature svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.price-feature.off { color: var(--textd); }
.price-feature.off svg { opacity: .3; }

.price-btn {
  display: block; width: 100%; padding: 13px; border-radius: 12px; text-align: center;
  font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: -.1px;
  transition: opacity .2s, box-shadow .2s, transform .15s;
}
.price-btn:hover { opacity: .88; transform: translateY(-1px); }
.price-btn-ghost { background: rgba(255,255,255,.05); border: 1px solid var(--border2); color: var(--textm); }
.price-btn-ghost:hover { background: rgba(255,255,255,.08); color: var(--text); }
.price-btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; box-shadow: 0 8px 24px rgba(243,46,64,.3); }
.price-btn-primary:hover { box-shadow: 0 12px 32px rgba(243,46,64,.45); }
.price-btn-outline { background: transparent; border: 1px solid var(--border2); color: var(--textm); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .hero-title { letter-spacing: -2px; }
  .migration-grid { grid-template-columns: 1fr; gap: 0; }
  .mig-col { border-radius: 0; }
  .mig-col:first-child { border-radius: 16px 16px 0 0; border-bottom: none; }
  .mig-col:last-child { border-radius: 0 0 16px 16px; }
  .mig-vs { flex-direction: row; padding: 12px 16px; margin: 0; background: var(--card); border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
  .mig-vs-line { flex: 1; height: 1px; width: auto; }
  .photo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .pt-tall { grid-row: span 1; }
  .how-ambient-inner { height: 300px; }
  .bento { grid-template-columns: 1fr; }
  .b8,.b4,.b6 { grid-column: span 12; }
  .how-grid { grid-template-columns: 1fr; gap: 48px; }
  .phone-wrap { display: none; }
  nav .nav-links { display: none; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 16px; }
}
@media (max-width: 600px) {
  nav { width: calc(100% - 24px); top: 8px; }
  .hero { padding: 120px 20px 60px; }
  .hero-stat-num { font-size: 20px; }
  .hero-stat-label { font-size: 9px; }

}
