 :root {
  --bg: #ffffff;
  --surface: #f7fbff;
  --surface-2: #ffffff;
  --line: rgba(0, 109, 214, 0.12);
  --blue-1: #0070d8;
  --blue-2: #20b6ff;
  --blue-3: #0a74de;
  --blue-4: #365d84;
  --text: #10253e;
  --muted: #5e7691;
  --shadow: 0 16px 44px rgba(6, 77, 143, 0.12);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 55%, #eef7ff 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; position: relative; z-index: 1; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-3);
  margin-bottom: 12px;
  font-weight: 700;
}
.bg-grid {
  position: fixed; inset: 0; pointer-events: none; opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}
.bg-orb {
  position: fixed; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: .45;
}
.orb-1 { width: 380px; height: 380px; background: #00b7ff; top: -100px; left: -80px; }
.orb-2 { width: 300px; height: 300px; background: #003acb; right: -40px; top: 220px; }
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.92); border-bottom: 1px solid rgba(0,109,214,0.08); box-shadow: 0 10px 30px rgba(13,80,143,0.06);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: 56px; height: 56px; object-fit: contain; border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #eef7ff); padding: 6px; box-shadow: var(--shadow);
}
.brand strong { display: block; font-size: 1.05rem; color: var(--text); }
.brand span { color: var(--muted); font-size: .88rem; }
.main-nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-weight: 600; }
.main-nav a:hover { color: white; }
.btn {
  border: 0; cursor: pointer; font-weight: 700; border-radius: 999px;
  padding: 14px 22px; display: inline-flex; align-items: center; justify-content: center;
  transition: .25s ease; box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white; background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
}
.btn-secondary {
  color: var(--text); background: #ffffff; border: 1px solid rgba(0,109,214,0.14);
}
.hero {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center;
  padding: 72px 0 40px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.3rem);
  line-height: .95; margin: 0 0 20px; letter-spacing: -0.05em;
}
.hero h1 span {
  background: linear-gradient(90deg, #0b3e77, #0d7be8 70%, #32b6ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: var(--muted); font-size: 1.06rem; line-height: 1.8; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 34px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px;
}
.hero-stats div {
  padding: 16px 18px; border-radius: 22px; background: linear-gradient(180deg, #ffffff, #f3faff); border: 1px solid var(--line);
}
.hero-stats strong { display: block; font-size: 1.55rem; margin-bottom: 6px; }
.hero-stats span { color: var(--muted); font-size: .92rem; }
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,250,255,0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  border-radius: var(--radius);
}
.phone-mockup { position: relative; padding: 28px; min-height: 620px; overflow: hidden; }
.phone-top {
  width: 140px; height: 22px; background: rgba(255,255,255,0.16); border-radius: 999px; margin: 0 auto 20px;
}
.logo-hero {
  width: min(100%, 420px); margin: 30px auto 0; filter: drop-shadow(0 24px 42px rgba(0,0,0,.32)); animation: float 7s ease-in-out infinite;
}
.floating-badges { position: absolute; inset: auto 20px 26px 20px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.floating-badges span, .business-badge {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.94); border: 1px solid rgba(0,109,214,0.12); color: var(--text); font-weight: 700; font-size: .9rem; box-shadow: 0 10px 24px rgba(0,100,180,0.08);
}
.trusted { padding-bottom: 10px; }
.trusted-card { padding: 24px 26px; }
.trusted-card p { margin: 0; color: var(--blue-4); text-align: center; font-size: 1rem; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 0 0 12px; line-height: 1.04; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.75; }
.feature-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px;
}
.feature-card { padding: 28px; }
.feature-icon {
  width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; font-size: 1.2rem; font-weight: 800;
  background: linear-gradient(135deg, rgba(0,145,255,0.28), rgba(103,216,255,0.25));
  margin-bottom: 18px;
}
.feature-card h3 { margin: 0 0 10px; font-size: 1.18rem; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.business-grid, .frames-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px;
}
.business-card, .frame-card {
  padding: 22px; position: relative; overflow: hidden; min-height: 165px;
}
.business-card::before, .frame-card::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(104,214,255,0.14), transparent 45%, rgba(0,100,214,0.18)); opacity: .9;
}
.business-card > *, .frame-card > * { position: relative; z-index: 1; }
.business-card .icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; font-size: 1.4rem;
  background: rgba(255,255,255,0.1); margin-bottom: 16px;
}
.business-card h3, .frame-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.business-card p, .frame-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .94rem; }
.frame-number {
  position: absolute; top: 18px; right: 18px; font-size: .78rem; color: #d2f4ff; background: rgba(255,255,255,.12); padding: 8px 10px; border-radius: 999px;
}
.generator-layout {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 24px; align-items: start;
}
.generator-form, .preview-card { padding: 28px; }
.form-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.form-group label { color: var(--text); font-weight: 700; font-size: .95rem; }
input, select {
  width: 100%; border: 1px solid rgba(0,109,214,0.12); background: #ffffff; color: var(--text); box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  padding: 14px 16px; border-radius: 16px; outline: none; font: inherit;
}
input[type="color"] { padding: 8px; min-height: 54px; }
input[type="range"] { padding: 0; background: transparent; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.colors-row { grid-template-columns: repeat(3, minmax(0,1fr)); }
.check-option {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 16px;
  background: #ffffff; border: 1px solid rgba(0,109,214,0.12); font-weight: 600; color: var(--text);
}
.check-option input { width: auto; }
.generator-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.preview-top { display: flex; justify-content: space-between; gap: 18px; align-items: start; margin-bottom: 18px; }
.preview-top h3 { margin: 4px 0 0; font-size: 1.35rem; }
.preview-frame {
  position: relative; min-height: 520px; border-radius: 36px; padding: 60px 24px 56px;
  background: linear-gradient(160deg, rgba(255,255,255,0.95), rgba(223,247,255,0.95));
  display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden;
}
.preview-frame::before {
  content: ''; position: absolute; inset: 12px; border-radius: 28px; border: 2px dashed rgba(0,102,214,0.14);
}
.frame-label-top, .frame-label-bottom {
  position: absolute; left: 50%; transform: translateX(-50%); color: #0b3e77; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.frame-label-top { top: 24px; }
.frame-label-bottom { bottom: 24px; font-size: .82rem; text-align: center; }
#qrCanvas {
  position: relative; z-index: 2; width: 100%; display: flex; align-items: center; justify-content: center;
}
.preview-note { color: var(--muted); line-height: 1.7; margin: 18px 0 0; }
.cta-box {
  padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cta-box h2 { margin: 0 0 10px; font-size: clamp(1.7rem, 4vw, 2.9rem); }
.cta-box p { margin: 0; color: var(--muted); max-width: 700px; line-height: 1.75; }
.site-footer { padding: 28px 0 40px; border-top: 1px solid rgba(0,109,214,0.08); }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.footer-wrap p { margin: 0; color: var(--muted); }
.reveal { opacity: 0; transform: translateY(24px); transition: .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (max-width: 1080px) {
  .hero, .generator-layout, .feature-grid, .business-grid, .frames-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero { align-items: start; }
  .main-nav { display: none; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 20px, 100%); }
  .nav-wrap { gap: 12px; }
  .nav-cta { display: none; }
  .hero, .generator-layout, .feature-grid, .business-grid, .frames-grid, .form-row, .colors-row, .hero-stats, .cta-box, .footer-wrap {
    grid-template-columns: 1fr; display: grid;
  }
  .hero { padding-top: 42px; }
  .phone-mockup { min-height: auto; }
  .section { padding: 70px 0; }
  .preview-frame { min-height: 460px; padding-inline: 16px; }
  .brand img { width: 50px; height: 50px; }
}


.hero-copy, .section-head, .preview-card, .generator-form, .feature-card, .business-card, .frame-card { scroll-margin-top: 90px; }
.bg-orb, .bg-grid { display:none !important; }

@media (max-width: 760px) {
  body { font-size: 15px; }
  .site-header { position: sticky; }
  .container { width: min(100% - 16px, 100%); }
  .brand { gap: 10px; }
  .brand img { width: 44px; height: 44px; border-radius: 14px; }
  .brand strong { font-size: .98rem; }
  .brand span { font-size: .76rem; }
  .hero { gap: 20px; padding: 26px 0 18px; }
  .hero h1 { font-size: clamp(2.05rem, 11vw, 3rem); line-height: 1; }
  .hero p { font-size: .96rem; line-height: 1.65; }
  .hero-actions { gap: 10px; margin: 22px 0 24px; }
  .btn { width: 100%; padding: 13px 18px; }
  .hero-stats { gap: 10px; }
  .hero-stats div { padding: 14px; }
  .phone-mockup { padding: 18px; border-radius: 24px; }
  .logo-hero { width: min(100%, 280px); margin-top: 12px; }
  .floating-badges { position: static; margin-top: 18px; }
  .floating-badges span { font-size: .82rem; padding: 8px 12px; }
  .section { padding: 52px 0; }
  .section-head h2 { font-size: clamp(1.65rem, 8vw, 2.25rem); }
  .feature-card, .business-card, .frame-card, .generator-form, .preview-card, .cta-box { padding: 18px; border-radius: 22px; }
  .business-card, .frame-card { min-height: unset; }
  .preview-top { grid-template-columns: 1fr; display: grid; gap: 12px; }
  .preview-frame { min-height: 360px; border-radius: 26px; padding: 54px 12px 48px; }
  #qrCanvas canvas, #qrCanvas img { max-width: 100% !important; height: auto !important; }
  .frame-label-top { top: 18px; font-size: .78rem; }
  .frame-label-bottom { bottom: 18px; font-size: .72rem; width: calc(100% - 28px); }
  .generator-actions { grid-template-columns: 1fr; display: grid; }
  .footer-wrap { text-align: center; gap: 14px; }
  .footer-brand { justify-content: center; }
}


/* Enhanced animated background */
.bg-orb {
  animation: orbFloat 16s ease-in-out infinite;
}
.orb-1 { animation-delay: 0s; }
.orb-2 { animation-delay: 3s; }
.orb-3 {
  width: 260px; height: 260px; background: #7bdcff; left: 38%; bottom: 8%;
  opacity: .28; filter: blur(70px); animation-delay: 6s;
}
.bg-lines {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; opacity: .55;
}
.bg-lines span {
  position: absolute; display: block; border: 1px solid rgba(0, 132, 255, 0.12);
  border-radius: 999px; animation: pulseRing 18s linear infinite;
}
.bg-lines span:nth-child(1) { width: 720px; height: 720px; right: -180px; top: -80px; }
.bg-lines span:nth-child(2) { width: 540px; height: 540px; right: 5%; top: 14%; animation-delay: -6s; }
.bg-lines span:nth-child(3) { width: 680px; height: 680px; left: -220px; bottom: -180px; animation-delay: -11s; }

.particles {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.particles i {
  position: absolute; width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(0,122,255,.9), rgba(97,216,255,.45));
  box-shadow: 0 0 18px rgba(0,132,255,.35);
  animation: particleUp 14s linear infinite;
  opacity: .28;
}
.particles i:nth-child(1) { left: 8%; bottom: -30px; animation-delay: 0s; }
.particles i:nth-child(2) { left: 18%; bottom: -40px; animation-delay: -2s; width: 6px; height: 6px; }
.particles i:nth-child(3) { left: 34%; bottom: -20px; animation-delay: -6s; }
.particles i:nth-child(4) { left: 51%; bottom: -50px; animation-delay: -9s; width: 10px; height: 10px; }
.particles i:nth-child(5) { left: 64%; bottom: -20px; animation-delay: -4s; }
.particles i:nth-child(6) { left: 76%; bottom: -40px; animation-delay: -11s; width: 7px; height: 7px; }
.particles i:nth-child(7) { left: 88%; bottom: -35px; animation-delay: -7s; }
.particles i:nth-child(8) { left: 94%; bottom: -25px; animation-delay: -13s; width: 5px; height: 5px; }

.site-header, .hero, .section, footer {
  position: relative;
  z-index: 2;
}

.main-nav a {
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -8px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover {
  color: var(--blue-1);
}
.main-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-menu-btn {
  display: none;
  width: 50px; height: 50px; border-radius: 16px;
  border: 1px solid rgba(0,109,214,0.12);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  padding: 0;
}
.mobile-menu-btn span {
  display: block; width: 20px; height: 2px;
  background: var(--blue-1); border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  padding: 0 16px 18px;
}
.mobile-menu-inner { display: grid; gap: 10px; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,109,214,0.1);
  box-shadow: 0 10px 26px rgba(6, 77, 143, 0.08);
  font-weight: 700;
  color: var(--text);
}
.mobile-menu .mobile-menu-cta {
  justify-content: center;
  color: white;
}
.mobile-menu.open {
  display: grid;
  gap: 10px;
  animation: mobileMenuIn .25s ease;
}

.hero-visual .phone-mockup::before {
  content: "";
  position: absolute;
  inset: auto 10% 14% 10%;
  height: 160px;
  background: radial-gradient(circle, rgba(0,162,255,.18), transparent 60%);
  filter: blur(10px);
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0, 18px, 0) scale(1.08); }
}
@keyframes pulseRing {
  0% { transform: scale(.92) rotate(0deg); opacity: .18; }
  50% { opacity: .34; }
  100% { transform: scale(1.08) rotate(10deg); opacity: .12; }
}
@keyframes particleUp {
  0% { transform: translateY(0) scale(.9); opacity: 0; }
  10% { opacity: .3; }
  100% { transform: translateY(-120vh) scale(1.15); opacity: 0; }
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
    display: grid;
    align-items: center;
  }
  .main-nav, .nav-cta {
    display: none;
  }
  .mobile-menu-btn {
    display: inline-flex;
  }
  .mobile-menu {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 42px;
  }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; }
  .phone-mockup {
    min-height: 460px;
    padding: 20px;
  }
  .logo-hero {
    width: min(100%, 290px);
    margin-top: 14px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .feature-grid, .business-grid, .frames-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 20px, 1180px); }
  .site-header {
    border-radius: 0 0 24px 24px;
  }
  .brand img {
    width: 50px; height: 50px;
  }
  .brand strong {
    font-size: .98rem;
  }
  .brand span {
    font-size: .78rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
  .trusted-card, .feature-card, .business-card, .frame-card {
    border-radius: 22px;
  }
  .floating-badges {
    gap: 8px;
  }
  .floating-badges span {
    font-size: .76rem;
    padding: 8px 12px;
  }
}


/* Brand-owned icon system */
.brand-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--blue-1);
  background:
    radial-gradient(circle at 30% 25%, rgba(111, 221, 255, 0.24), transparent 36%),
    linear-gradient(180deg, #ffffff, #eef8ff);
  border: 1px solid rgba(0,109,214,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 18px 38px rgba(0,110,214,0.12);
}
.brand-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.business-card .icon {
  margin-bottom: 16px;
}

/* Hardening UX */
.secure-ui {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.secure-ui img,
.secure-ui svg,
.secure-ui canvas {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
.secure-ui input,
.secure-ui textarea,
.secure-ui select,
.secure-ui button,
.secure-ui a,
.secure-ui [contenteditable="true"] {
  -webkit-user-select: auto;
  user-select: auto;
  pointer-events: auto;
}

@media (max-width: 560px) {
  .brand-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }
  .brand-icon svg {
    width: 26px;
    height: 26px;
  }
}


.logo-tools-row {
  align-items: end;
}
.field-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
}
.check-option-inline {
  min-height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.btn-small {
  padding: 12px 16px;
  font-size: .92rem;
}
input[type="file"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
}
input[type="file"]::file-selector-button {
  border: 0;
  margin-right: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: white;
  cursor: pointer;
}


.frames-minimal {
  padding: 26px 28px;
}
.frames-minimal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}
.conditional-field[hidden] {
  display: none !important;
}


.business-hidden-section {
  padding-top: 20px;
  padding-bottom: 20px;
}
.business-minimal {
  padding: 22px 24px;
}
.business-minimal p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
}
