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

:root{
  --bg:#F8FAFC;
  --bg2:#EEF2F7;
  --bg3:#E4EAF3;
  --white:#FFFFFF;
  --ink:#0F172A;
  --muted:#64748B;
  --light:#94A3B8;
  --line:#E2E8F0;
  --teal:#13b8a7;
  --teal-light:rgba(19,184,167,0.1);
  --teal-mid:rgba(19,184,167,0.18);
  --teal-dark:#0d9688;
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'Outfit',sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  padding: 16px 60px;
  background: rgba(248,250,252,0.88);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  width: 36px; height: 36px;
  border-radius: 10px;
  object-fit: cover;
}
.logo-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  border: none;
  padding: 11px 26px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .25s;
}
.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(19,184,167,0.3);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 60px 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,184,167,0.07), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,184,167,0.05), transparent 65%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
  font-weight: 500;
  animation: slideUp .7s ease both;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.4); }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.02em;
  animation: slideUp .8s ease .08s both;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero-sub {
  margin-top: 28px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 420px;
  animation: slideUp .8s ease .16s both;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  animation: slideUp .8s ease .24s both;
}
.btn-main {
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
  background: var(--teal);
  border: none;
  padding: 15px 34px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .25s;
}
.btn-main:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(19,184,167,0.28);
}
.btn-outline {
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 400;
  color: var(--muted);
  background: transparent;
  border: 1.5px solid var(--line);
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .25s;
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  animation: slideUp .8s ease .32s both;
}
.hs-item {
  border-left: 2px solid var(--teal-light);
  padding-left: 14px;
}
.hs-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.hs-label {
  font-size: .7rem;
  color: var(--light);
  margin-top: 3px;
  letter-spacing: .04em;
}

/* ── MOCKUP ── */
.hero-right {
  position: relative;
  animation: mockIn 1s cubic-bezier(0.16,1,0.3,1) .3s both;
}
@keyframes mockIn {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}

.mock-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(15,23,42,0.1),
    0 0 0 1px rgba(255,255,255,0.8),
    inset 0 1px 0 rgba(255,255,255,1);
  position: relative;
}
.mock-top {
  background: var(--bg2);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.m-dots { display: flex; gap: 5px; }
.m-dot { width: 9px; height: 9px; border-radius: 50%; }
.m-dot:nth-child(1) { background: #FF5F57; }
.m-dot:nth-child(2) { background: #FFBD2E; }
.m-dot:nth-child(3) { background: #28CA41; }
.m-url-bar {
  flex: 1;
  text-align: center;
  font-size: .65rem;
  color: var(--light);
  letter-spacing: .04em;
}
.mock-body {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 440px;
}
.m-side {
  background: var(--bg);
  border-right: 1px solid var(--line);
  padding: 20px 12px;
}
.m-evt {
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--ink);
  padding: 6px 10px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.m-evt small {
  display: block;
  font-size: .58rem;
  color: var(--muted);
  margin-top: 2px;
  font-family: var(--sans);
  letter-spacing: .04em;
}
.m-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: .68rem;
  color: var(--muted);
}
.m-nav.on {
  background: var(--teal-light);
  color: var(--teal);
  font-weight: 500;
}
.m-nav-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.m-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.m-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 300;
}
.m-subtitle {
  font-size: .65rem;
  color: var(--muted);
  margin-top: 1px;
}
.m-prog {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}
.m-prog-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.m-prog-lbl {
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.m-prog-pct {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
}
.m-bar {
  height: 4px;
  background: var(--bg3);
  border-radius: 2px;
  overflow: hidden;
}
.m-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #1dd5c2);
  width: 68%;
  animation: fill 1.6s cubic-bezier(.16,1,.3,1) 1s both;
}
@keyframes fill { from{width:0} to{width:68%} }
.m-prog-note {
  font-size: .6rem;
  color: var(--light);
  margin-top: 7px;
}
.m-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.m-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px;
}
.m-card-n {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}
.m-card-l {
  font-size: .6rem;
  color: var(--muted);
  margin-top: 5px;
}
.m-tasks { display: flex; flex-direction: column; gap: 6px; }
.m-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 7px;
}
.m-ck {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
}
.m-ck.done {
  background: var(--teal);
  border-color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-ck.done::after { content:'✓'; font-size:7px; color:#fff; }
.m-task-t { font-size: .68rem; color: var(--ink); flex: 1; }
.m-task-t.done { text-decoration: line-through; color: var(--light); }
.m-task-d { font-size: .58rem; color: var(--light); }

/* Floating cards */
.fc {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 12px 40px rgba(15,23,42,0.1);
}
.fc1 {
  left: -80px; bottom: 60px;
  min-width: 170px;
  animation: floatY 5s ease-in-out infinite, fadeUpIn .8s ease .8s both;
}
.fc2 {
  right: -30px; top: -20px;
  min-width: 150px;
  animation: floatY 6s ease-in-out 1.2s infinite, fadeUpIn .8s ease 1s both;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes fadeUpIn {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
.fc-lbl {
  font-size: .58rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fc-val {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
}
.fc-note {
  font-size: .6rem;
  color: var(--muted);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fc-green { color: #10B981; font-weight: 600; }

/* ── MARQUEE ── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  background: var(--white);
}
.mq-track {
  display: flex;
  gap: 56px;
  animation: mq 22s linear infinite;
  width: max-content;
}
@keyframes mq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-item {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--light);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 18px;
}
.mq-item::after { content:'✦'; color:var(--teal); font-size:.65rem; opacity:.7; }

/* ── SECTION SHARED ── */
.sec-tag {
  font-size: .68rem;
  color: var(--teal);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-tag::before { content:''; width:18px; height:1.5px; background:var(--teal); }
.sec-h {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  color: var(--ink);
}
.sec-h em { font-style: italic; color: var(--teal); }
.sec-p {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ── ABOUT ── */
.about {
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.an-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.an-row:first-child { border-top: 1px solid var(--line); }
.an-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--ink);
  min-width: 90px;
  font-weight: 300;
}
.an-num span { color: var(--teal); }
.an-title { font-size: .88rem; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.an-desc  { font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* ── FEATURES ── */
.features {
  padding: 0 60px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.f-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.f-card:hover {
  border-color: rgba(19,184,167,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15,23,42,0.08);
}
.f-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,184,167,0.04), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.f-card:hover::after { opacity: 1; }
.fa   { grid-column: span 5; }
.fb   { grid-column: span 7; }
.fc3c { grid-column: span 4; }
.fd   { grid-column: span 4; }
.fe   { grid-column: span 4; }
.f-icon {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: var(--teal-light);
  border: 1px solid rgba(19,184,167,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 20px;
}
.f-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 10px;
}
.f-desc { font-size: .8rem; color: var(--muted); line-height: 1.7; }
.f-bg-n {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(19,184,167,0.08);
  position: absolute;
  bottom: 20px; right: 26px;
  line-height: 1;
  letter-spacing: -.03em;
  pointer-events: none;
}
.bv-mt { margin-top: 20px; }
.bv-r  { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.bv-l  { font-size: .62rem; color: var(--muted); width: 68px; flex-shrink: 0; }
.bv-t  { flex: 1; height: 4px; background: var(--bg3); border-radius: 2px; overflow: hidden; }
.bv-f  { height: 100%; background: linear-gradient(90deg, var(--teal), #1dd5c2); border-radius: 2px; }
.bv-v  { font-size: .62rem; color: var(--muted); width: 44px; text-align: right; flex-shrink: 0; }
.gv-r  {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 11px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 7px;
  margin-bottom: 6px;
}
.gv-n  { font-size: .7rem; color: var(--ink); }
.gv-t  { font-size: .58rem; padding: 3px 8px; border-radius: 100px; font-weight: 500; letter-spacing: .04em; }
.gv-t.ok { background: rgba(16,185,129,0.1); color: #10B981; }
.gv-t.nd { background: var(--bg2); color: var(--muted); }

/* ── PROCESS ── */
.process {
  padding: 0 60px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 56px;
}
.p-step {
  background: var(--white);
  padding: 32px 26px;
  transition: background .25s;
  position: relative;
}
.p-step:hover { background: var(--bg); }
.p-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.p-step:hover .p-line { opacity: 1; }
.p-n {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: rgba(19,184,167,0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.p-t { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; }
.p-d { font-size: .76rem; color: var(--muted); line-height: 1.6; }

/* ── CTA ── */
.cta-wrap {
  padding: 0 60px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-box {
  background: var(--ink);
  border-radius: 20px;
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,184,167,0.12), transparent 65%);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 30%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,184,167,0.07), transparent 65%);
}
.cta-left { position: relative; z-index: 1; }
.cta-tag {
  font-size: .68rem;
  color: var(--teal);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-tag::before { content:''; width:16px; height:1px; background:var(--teal); }
.cta-h {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #F0EDE8;
}
.cta-h em { font-style: italic; color: var(--teal); }
.cta-sub {
  margin-top: 14px;
  font-size: .9rem;
  color: rgba(240,237,232,.5);
  line-height: 1.7;
}
.cta-right { position: relative; z-index: 1; min-width: 280px; }
.cta-form  { display: flex; flex-direction: column; gap: 11px; }
.cta-inp {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #F0EDE8;
  padding: 14px 18px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: .875rem;
  outline: none;
  transition: border-color .2s;
}
.cta-inp::placeholder { color: rgba(255,255,255,.3); }
.cta-inp:focus { border-color: rgba(19,184,167,.6); }
.cta-btn {
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--teal);
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .04em;
}
.cta-btn:hover {
  background: #0fa898;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(19,184,167,.3);
}
.cta-note { font-size: .65rem; color: rgba(255,255,255,.2); text-align: center; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--white);
}
.f-logo { display: flex; align-items: center; gap: 9px; }
.f-logo img { width: 28px; height: 28px; border-radius: 8px; }
.f-logo-t { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.f-links { display: flex; gap: 24px; list-style: none; }
.f-links a { font-size: .72rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--teal); }
.f-copy { font-size: .68rem; color: var(--light); }

/* ── REVEAL ── */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.r.up { opacity: 1; transform: none; }
.r.d1 { transition-delay: .1s; }
.r.d2 { transition-delay: .2s; }
.r.d3 { transition-delay: .3s; }

@keyframes slideUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav, nav.scrolled { padding: 18px 24px; }
  .nav-links { display: none; }
  .hero { padding: 110px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .about { padding: 80px 24px; grid-template-columns: 1fr; gap: 48px; }
  .features { padding: 0 24px 80px; }
  .feat-grid { grid-template-columns: 1fr; }
  .fa,.fb,.fc3c,.fd,.fe { grid-column: span 1; }
  .process { padding: 0 24px 80px; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .cta-wrap { padding: 0 24px 80px; }
  .cta-box { grid-template-columns: 1fr; padding: 44px 32px; gap: 36px; }
  footer { padding: 28px 24px; }
}