
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #eff6f8;
  --surface: rgba(255,255,255,0.72);
  --surface-strong: rgba(255,255,255,0.9);
  --text: #163446;
  --muted: #5e7482;
  --line: rgba(22,52,70,0.12);
  --teal: #36c6bf;
  --teal-deep: #0e918d;
  --sky: #6faaf9;
  --violet: #a98df5;
  --sand: #f3d9b5;
  --coral: #ff8b7b;
  --shadow: 0 24px 60px rgba(39, 95, 130, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(169,141,245,0.28), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(54,198,191,0.25), transparent 20%),
    radial-gradient(circle at 76% 72%, rgba(111,170,249,0.25), transparent 18%),
    linear-gradient(180deg, #f9fcfd 0%, #eef5f7 45%, #f8fbfd 100%);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.page-shell { position: relative; overflow: clip; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.55;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite;
}
.orb.a { width: 300px; height: 300px; background: rgba(169,141,245,0.36); top: 60px; left: -80px; }
.orb.b { width: 240px; height: 240px; background: rgba(54,198,191,0.34); top: 140px; right: -70px; animation-delay: -6s; }
.orb.c { width: 320px; height: 320px; background: rgba(111,170,249,0.28); top: 55%; left: 65%; animation-delay: -10s; }
.orb.d { width: 280px; height: 280px; background: rgba(243,217,181,0.28); top: 75%; left: -90px; animation-delay: -4s; }

.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 84px 0; position: relative; }
.section.tight { padding-top: 34px; }
.section-heading { max-width: 780px; margin-bottom: 28px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(22,52,70,0.08);
  color: var(--teal-deep); font-size: 0.84rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--sky)); box-shadow: 0 0 16px rgba(54,198,191,0.65); }
.kicker { color: var(--muted); max-width: 620px; font-size: 1.08rem; line-height: 1.75; }
.display {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 20px 0 18px;
}
.display .accent { color: var(--teal-deep); }
.h2 {
  margin: 18px 0 16px;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.subcopy { color: var(--muted); line-height: 1.75; font-size: 1.04rem; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(248,251,253,0.72);
  border-bottom: 1px solid rgba(22,52,70,0.08);
}
.nav-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
  min-height: 82px;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px; font-weight: 800;
}
.brand-mark {
  width: 48px; height: 48px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(228,239,243,0.9));
  border: 1px solid rgba(22,52,70,0.1); box-shadow: var(--shadow);
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong { font-size: 1rem; letter-spacing: 0.03em; }
.brand-copy span { color: var(--muted); font-size: 0.8rem; }
.nav-links {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.nav-links a {
  padding: 12px 16px; border-radius: 999px; color: var(--muted); font-weight: 700; font-size: 0.95rem;
  transition: 0.25s ease;
}
.nav-links a:hover { background: rgba(255,255,255,0.8); color: var(--text); transform: translateY(-1px); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none; width: 48px; height: 48px; border-radius: 16px; border: 1px solid rgba(22,52,70,0.12);
  background: rgba(255,255,255,0.82); box-shadow: var(--shadow); cursor: pointer;
}
.burger span, .burger span::before, .burger span::after {
  display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; position: relative; margin: 0 auto; transition: 0.28s ease;
}
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.menu-open .burger span { background: transparent; }
.menu-open .burger span::before { transform: rotate(45deg) translate(4px, 4px); }
.menu-open .burger span::after { transform: rotate(-45deg) translate(4px, -4px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; padding: 16px 24px; border: 1px solid transparent; font-weight: 800; font-size: 0.96rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 35px rgba(29,73,101,0.17); }
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--sky)); color: white; }
.btn-secondary { background: rgba(255,255,255,0.78); border-color: rgba(22,52,70,0.12); color: var(--text); }
.btn-ghost { background: rgba(15, 35, 48, 0.06); border-color: rgba(22,52,70,0.08); }

.hero {
  padding: 56px 0 34px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.tag-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.72); border: 1px solid rgba(22,52,70,0.08); color: var(--muted); font-weight: 700; font-size: 0.92rem;
}
.stat-row {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 26px;
}
.stat-card {
  padding: 20px; border-radius: 22px; background: rgba(255,255,255,0.75); border: 1px solid rgba(22,52,70,0.08); box-shadow: var(--shadow);
}
.stat-card strong { font-size: 2rem; font-weight: 800; display: block; margin-bottom: 6px; }
.stat-card span { color: var(--muted); font-size: 0.95rem; }

.visual-stack { position: relative; min-height: 730px; }
.card-float {
  position: absolute; backdrop-filter: blur(16px); background: rgba(255,255,255,0.72);
  border: 1px solid rgba(22,52,70,0.08); border-radius: 28px; box-shadow: var(--shadow);
}
.preview-card {
  top: 0; right: 10px; width: min(100%, 600px); padding: 18px;
}
.preview-card img { width: 100%; border-radius: 24px; }
.note-card {
  left: 0; bottom: 90px; width: min(380px, 78%); padding: 24px; animation: floatY 7s ease-in-out infinite;
}
.note-card h3, .mini-panel h3 { margin: 0 0 10px; font-size: 1.18rem; }
.note-card p, .mini-panel p { margin: 0; color: var(--muted); line-height: 1.65; }
.note-card ul { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.note-card li { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 700; }
.note-card li i { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--sky)); display: inline-block; }
.mini-panel {
  right: 12px; bottom: 0; width: min(250px, 52%); padding: 20px; animation: floatY 8s ease-in-out infinite reverse;
}
.mini-list { display: grid; gap: 12px; margin-top: 16px; }
.mini-list span {
  padding: 10px 14px; border-radius: 14px; background: rgba(15,35,48,0.05); color: var(--muted); font-size: 0.93rem; font-weight: 700;
}
.wave-line {
  position: absolute; left: 12%; bottom: 36%; width: 75%; height: 120px; opacity: 0.55;
}
.wave-line svg { width: 100%; height: 100%; }

.panel {
  padding: 28px; border-radius: var(--radius-xl); background: var(--surface); border: 1px solid rgba(22,52,70,0.08); box-shadow: var(--shadow); backdrop-filter: blur(20px);
}
.split-panel {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 24px; align-items: stretch;
}
.media-card {
  position: relative; overflow: hidden; padding: 24px; min-height: 420px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.76));
}
.media-card::before {
  content: ''; position: absolute; inset: auto -40px -120px auto; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(169,141,245,0.26), transparent 62%);
}
.media-card .app-icon {
  width: 110px; height: 110px; border-radius: 28px; box-shadow: 0 18px 40px rgba(58,87,138,0.2);
}
.badge-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 24px; }
.badge-box {
  padding: 16px; border-radius: 18px; background: rgba(255,255,255,0.74); border: 1px solid rgba(22,52,70,0.08);
}
.badge-box strong { display: block; margin-bottom: 6px; }
.feature-list { display: grid; gap: 16px; }
.feature-item {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 18px; border-radius: 20px;
  background: rgba(255,255,255,0.65); border: 1px solid rgba(22,52,70,0.08);
}
.icon-chip {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; color: white;
  background: linear-gradient(145deg, var(--teal), var(--sky));
  box-shadow: 0 10px 28px rgba(57,147,172,0.24);
}
.icon-chip svg { width: 24px; height: 24px; }
.feature-item h3 { margin: 2px 0 6px; font-size: 1.06rem; }
.feature-item p { margin: 0; color: var(--muted); line-height: 1.65; }

.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.service-card {
  padding: 24px; border-radius: 24px; background: rgba(255,255,255,0.74); border: 1px solid rgba(22,52,70,0.08); box-shadow: var(--shadow);
  min-height: 220px; position: relative; overflow: hidden; transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card::after {
  content: ''; position: absolute; inset: auto -20px -30px auto; width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(111,170,249,0.22), transparent 68%);
}
.service-card h3 { margin: 18px 0 8px; font-size: 1.14rem; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.72; font-size: 0.96rem; }
.service-card .service-num { color: rgba(22,52,70,0.18); font-weight: 800; font-size: 2rem; }

.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.story-card {
  padding: 22px; border-radius: 24px; background: rgba(255,255,255,0.76); border: 1px solid rgba(22,52,70,0.08); box-shadow: var(--shadow);
}
.story-card h3 { margin: 16px 0 10px; font-size: 1.08rem; }
.story-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.story-card .story-badge {
  display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; padding: 8px 12px; background: rgba(15,35,48,0.06); color: var(--teal-deep); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.03em;
}

.showcase-shell { position: relative; }
.showcase-scroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, 1fr); gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory;
}
.showcase-scroll::-webkit-scrollbar { height: 10px; }
.showcase-scroll::-webkit-scrollbar-thumb { background: rgba(22,52,70,0.18); border-radius: 999px; }
.phone-card {
  scroll-snap-align: start; padding: 18px; border-radius: 30px; background: rgba(255,255,255,0.76); border: 1px solid rgba(22,52,70,0.08); box-shadow: var(--shadow);
}
.phone-card img { border-radius: 26px; width: 100%; box-shadow: 0 24px 40px rgba(32,76,103,0.12); }
.phone-card h3 { margin: 16px 0 8px; font-size: 1rem; }
.phone-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 0.95rem; }
.screen-nav { display: flex; gap: 10px; justify-content: flex-end; margin-bottom: 18px; }
.nav-arrow {
  width: 46px; height: 46px; border-radius: 16px; border: 1px solid rgba(22,52,70,0.1); background: rgba(255,255,255,0.76); box-shadow: var(--shadow); cursor: pointer; font-size: 1.25rem; color: var(--text);
}

.workflow {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px;
}
.step {
  padding: 26px 22px; border-radius: 28px; background: rgba(255,255,255,0.78); border: 1px solid rgba(22,52,70,0.08); box-shadow: var(--shadow); position: relative;
}
.step-index {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; font-weight: 800; color: white;
  background: linear-gradient(135deg, var(--teal-deep), var(--sky)); margin-bottom: 18px;
}
.step h3 { margin: 0 0 8px; font-size: 1.08rem; }
.step p { margin: 0; color: var(--muted); line-height: 1.72; }

.contact-layout { display: grid; grid-template-columns: 1fr 0.92fr; gap: 20px; }
.contact-card {
  padding: 30px; border-radius: 30px; background: rgba(255,255,255,0.8); border: 1px solid rgba(22,52,70,0.08); box-shadow: var(--shadow);
}
.contact-card h3 { margin: 0 0 10px; font-size: 1.45rem; }
.contact-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.contact-list { margin-top: 20px; display: grid; gap: 14px; }
.contact-list a, .contact-list div {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 18px; background: rgba(15,35,48,0.05); color: var(--text);
}
.contact-list svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--teal-deep); margin-top: 2px; }
.cta-panel {
  background: linear-gradient(135deg, rgba(54,198,191,0.18), rgba(169,141,245,0.18)), rgba(255,255,255,0.8);
}
.cta-panel .btn { margin-top: 18px; }

.site-footer {
  padding: 32px 0 50px; border-top: 1px solid rgba(22,52,70,0.08); position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 20px; align-items: end;
}
.footer-note { color: var(--muted); max-width: 540px; line-height: 1.75; }
.footer-meta { display: grid; gap: 12px; justify-content: end; text-align: right; }
.footer-meta .muted { color: var(--muted); }
.legal-link {
  display: inline-flex; align-items: center; gap: 10px; color: var(--teal-deep); font-weight: 800; justify-self: end;
}
.legal-link:hover { text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
[data-stagger="1"] { transition-delay: .08s; }
[data-stagger="2"] { transition-delay: .16s; }
[data-stagger="3"] { transition-delay: .24s; }
[data-stagger="4"] { transition-delay: .32s; }
[data-stagger="5"] { transition-delay: .4s; }

@keyframes drift {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(12px,-20px,0) scale(1.04); }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 1080px) {
  .hero-grid, .split-panel, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .visual-stack { min-height: 620px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .story-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .workflow { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-meta { justify-content: start; text-align: left; }
  .legal-link { justify-self: start; }
}
@media (max-width: 860px) {
  .nav-row { grid-template-columns: auto auto; }
  .nav-links {
    position: fixed; inset: 82px 16px auto 16px; background: rgba(249,252,253,0.95); border: 1px solid rgba(22,52,70,0.1); border-radius: 24px; box-shadow: var(--shadow);
    padding: 16px; display: none; flex-direction: column; align-items: stretch;
  }
  .menu-open .nav-links { display: flex; }
  .nav-actions .btn { display: none; }
  .burger { display: inline-grid; place-items: center; }
  .display { max-width: 12ch; }
  .stat-row, .services-grid, .story-grid, .workflow { grid-template-columns: 1fr; }
  .note-card { width: calc(100% - 30px); left: 15px; }
  .mini-panel { width: calc(100% - 30px); right: 15px; bottom: -18px; }
}
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 34px; }
  .container { width: min(calc(100% - 20px), var(--max)); }
  .display { font-size: 2.8rem; }
  .panel, .contact-card { padding: 22px; border-radius: 26px; }
  .showcase-scroll { grid-auto-columns: 84%; }
  .visual-stack { min-height: 680px; }
  .preview-card { right: 0; }
  .wave-line { left: 6%; width: 90%; }
}
