@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800&display=swap');

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

:root {
  --bg:          #F4F5F7;
  --white:       #ffffff;
  --text:        #111827;
  --muted:       #6B7280;
  --border:      #E2E8F0;
  --border-up:   #D4DAE8;
  --olive:       #3D4A1E;
  --olive-mid:   #5A6B2A;
  --olive-light: #8A9E4A;
  --dark-bg:     #1C1F12;
  --dark-srf:    #252918;
  --dark-border: #333a1e;
  --gold:        #C9A84C;
  --gold-dim:    #7A6228;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CURSOR ─── */
.cursor {
  width: 7px;
  height: 7px;
  background: var(--olive);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

.cursor-ring {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(61, 74, 30, 0.28);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s;
}

/* ─── GRAIN ─── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.022;
  mix-blend-mode: multiply;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.visible      { opacity: 1; transform: translateY(0); }
.reveal-delay-1      { transition-delay: 0.12s; }
.reveal-delay-2      { transition-delay: 0.24s; }
.reveal-delay-3      { transition-delay: 0.36s; }

nav, section, footer { position: relative; z-index: 1; }

/* ─── NAV ─── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  border-bottom: 1px solid var(--border);
  background: rgba(244, 245, 247, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--olive);
  letter-spacing: -0.02em;
}

.logo em {
  font-style: normal;
  color: var(--text);
}

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--olive);
  text-decoration: none;
  border: 1.5px solid var(--olive);
  padding: 8px 20px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}

.nav-cta:hover { background: var(--olive); color: #fff; }

/* ─── HERO ─── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 64px;
  background:
    radial-gradient(ellipse at 72% 44%, rgba(61, 74, 30, 0.06) 0%, transparent 56%),
    radial-gradient(circle, rgba(61, 74, 30, 0.14) 1px, transparent 1px);
  background-size: auto, 22px 22px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-text { flex: 1; min-width: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  border: 1.5px solid var(--olive);
  border-radius: 20px;
  padding: 4px 13px;
  margin-bottom: 28px;
  opacity: 0.75;
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--olive);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dot-pulse 2.4s ease-in-out infinite;
}

.tw-cursor {
  display: inline-block;
  color: var(--olive);
  font-weight: 400;
  margin-left: 1px;
  animation: tw-blink 0.75s step-end infinite;
}

@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero h1 {
  font-size: 62px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--olive);
}

.hero p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.68;
  max-width: 400px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--olive);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 8px;
  border: none;
  cursor: none;
  font-family: inherit;
  transition: opacity 0.18s, transform 0.18s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-ghost {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.18s;
}

.btn-ghost:hover { color: var(--text); }
.btn-ghost .arrow { display: inline-block; transition: transform 0.3s; }
.btn-ghost:hover .arrow { transform: translateY(4px); }

/* ─── PHONE (hero image) ─── */
.phone-wrap {
  flex-shrink: 0;
  width: 270px;
  position: relative;
}

.phone-scene {
  position: relative;
  width: 270px;
}

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

.hero-phone-img {
  width: 100%;
  display: block;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  animation: phone-float 7s ease-in-out infinite;
  filter:
    drop-shadow(0 28px 56px rgba(61, 74, 30, 0.18))
    drop-shadow(0 4px 14px rgba(0, 0, 0, 0.09));
}

/* ─── FLOATING CHIPS ─── */
.chip-float {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 6px 13px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
  opacity: 0;
  animation: chip-reveal 0.55s ease forwards;
}

.chip-dot {
  width: 6px;
  height: 6px;
  background: var(--olive);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Positions */
.chip-1 { top: 48px;  right: -108px; animation-delay: 0.9s,  0.9s; }
.chip-2 { top: 38%;   left:  -108px; animation-delay: 1.1s,  1.1s; }
.chip-3 { bottom: 104px; right: -100px; animation-delay: 1.3s, 1.3s; }
.chip-4 { bottom: 32px;  left:  -105px; animation-delay: 1.5s, 1.5s; }

/* Each chip floats at a different speed/amplitude */
.chip-1 { animation: chip-reveal 0.55s ease forwards, chip-bob-a 5s 1.45s ease-in-out infinite; }
.chip-2 { animation: chip-reveal 0.55s 1.1s ease forwards, chip-bob-b 6s 1.65s ease-in-out infinite; }
.chip-3 { animation: chip-reveal 0.55s 1.3s ease forwards, chip-bob-c 4.5s 1.85s ease-in-out infinite; }
.chip-4 { animation: chip-reveal 0.55s 1.5s ease forwards, chip-bob-a 5.5s 2.05s ease-in-out infinite; }

@keyframes chip-reveal {
  from { opacity: 0; transform: translateY(6px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

@keyframes chip-bob-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}
@keyframes chip-bob-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
@keyframes chip-bob-c {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-4px); }
}

/* ─── WHAT MAKES IT DIFFERENT ─── */
.different { background: var(--dark-bg); padding: 112px 64px; }

.different-inner { max-width: 1100px; margin: 0 auto; }

.section-header { margin-bottom: 60px; }

.section-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.different h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #F4F5F7;
}

.different h2 em { font-style: italic; color: var(--gold); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--dark-border);
  gap: 1px;
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  background: var(--dark-srf);
  padding: 40px 32px 40px;
  transition: background 0.25s;
}

.feature-card:hover { background: #2c301a; }

.feature-num {
  font-size: 64px;
  font-weight: 900;
  color: var(--dark-border);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -2px;
  transition: color 0.3s;
}

.feature-card:hover .feature-num { color: var(--gold-dim); }

.feature-icon {
  display: block;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #F4F5F7;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: #9a9e88;
  line-height: 1.72;
}

/* ─── HOW IT WORKS ─── */
.simple {
  background: var(--white);
  padding: 112px 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.simple-inner { max-width: 960px; margin: 0 auto; }

.simple .section-label { color: var(--olive); }

.simple h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 64px;
}

.simple h2 em { font-style: italic; color: var(--olive); }

.steps { display: flex; flex-direction: column; }

/* Step base — text-only (step 03) */
.step {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.step:first-child { padding-top: 0; }
.step:last-child  { border-bottom: none; padding-bottom: 0; }

/* Step with image — flex row: left (num+text) | right (image) */
.step.step-has-img {
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 0;
}

.step-left {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.step-visual {
  flex-shrink: 0;
  width: 300px;
}

.step-visual img {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow:
    0 16px 48px rgba(61, 74, 30, 0.13),
    0 3px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step.step-has-img:hover .step-visual img {
  transform: translateY(-4px);
  box-shadow:
    0 24px 60px rgba(61, 74, 30, 0.17),
    0 6px 16px rgba(0, 0, 0, 0.09);
}

.step-num {
  font-size: 78px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--border);
  flex-shrink: 0;
  width: 86px;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}

.step:hover .step-num { color: var(--olive); }

.step-content { flex: 1; padding-top: 8px; }

.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 9px;
}

.step-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.72;
}

/* ─── CLOSING CTA ─── */
.closing {
  background: var(--dark-bg);
  padding: 128px 64px;
  text-align: center;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 68%);
  pointer-events: none;
}

.closing-inner {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing .section-label { color: var(--gold); }

.closing h2 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #F4F5F7;
  margin-bottom: 18px;
}

.closing h2 em { font-style: italic; color: var(--gold); }

.closing > .closing-inner > p {
  font-size: 15px;
  color: #9a9e88;
  line-height: 1.7;
  margin-bottom: 44px;
}

.email-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.email-form input {
  flex: 1;
  min-width: 210px;
  max-width: 290px;
  padding: 14px 18px;
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  font-size: 13px;
  background: var(--dark-srf);
  color: #F4F5F7;
  outline: none;
  font-family: inherit;
  transition: border-color 0.18s;
}

.email-form input:focus        { border-color: var(--gold); }
.email-form input::placeholder { color: #4a4e38; }

.email-form button {
  background: var(--gold);
  color: var(--dark-bg);
  font-size: 13px;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 8px;
  border: none;
  cursor: none;
  font-family: inherit;
  white-space: nowrap;
  transition: opacity 0.18s, transform 0.18s;
}

.email-form button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.form-success {
  display: none;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-success.visible { display: block; }
.email-form.submitted { display: none; }

.closing-note { font-size: 11px; color: #4a4e38; letter-spacing: 0.04em; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
  padding: 22px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-logo {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.footer-logo em { font-style: normal; color: #9a9e88; }

footer p { font-size: 11px; color: #4a4e38; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

@media (max-width: 1024px) {
  nav        { padding: 18px 40px; }
  .hero      { padding: 64px 40px; }
  .hero-inner { gap: 56px; }
  .hero h1   { font-size: 50px; }
  .phone-wrap { width: 225px; }
  .different { padding: 88px 40px; }
  .different h2 { font-size: 40px; }
  .simple     { padding: 88px 40px; }
  .simple h2  { font-size: 40px; }
  .step-visual { width: 240px; }
  .closing   { padding: 96px 40px; }
  .closing h2 { font-size: 44px; }
  footer     { padding: 22px 40px; }
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }

  nav      { padding: 16px 22px; }
  .nav-cta { padding: 7px 15px; font-size: 11px; }
  .logo    { font-size: 15px; }

  .hero {
    padding: 52px 22px 48px;
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 44px;
    text-align: center;
  }

  .hero-text    { width: 100%; }
  .hero-badge   { margin-bottom: 20px; }
  .hero h1      { font-size: 40px; margin-bottom: 16px; }
  .hero p       { font-size: 15px; max-width: 100%; margin: 0 auto 28px; }
  .hero-cta     { justify-content: center; flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary  { text-align: center; padding: 14px; font-size: 14px; }
  .btn-ghost    { justify-content: center; }
  .phone-wrap   { width: 260px; }
  .phone-scene  { width: 260px; }

  .chip-float {
    font-size: 10px;
    padding: 5px 10px;
    gap: 5px;
  }

  /* Tighter positions for small screens — stay within ~55px of phone edges */
  .chip-1 { top: 40px;    right: -58px; }
  .chip-2 { top: 38%;     left:  -58px; }
  .chip-3 { bottom: 90px; right: -52px; }
  .chip-4 { bottom: 24px; left:  -54px; }

  .different    { padding: 64px 22px; }
  .different h2 { font-size: 34px; }
  .section-header { margin-bottom: 40px; }
  .feature-card { padding: 30px 24px; }
  .feature-num  { font-size: 52px; }

  .simple    { padding: 64px 22px; }
  .simple h2 { font-size: 34px; margin-bottom: 44px; }
  .step      { gap: 20px; padding: 32px 0; }
  .step-num  { font-size: 60px; width: 68px; }

  .step.step-has-img {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 0;
  }

  .step-left { gap: 20px; width: 100%; }

  .step-visual {
    width: 100%;
    max-width: 400px;
    align-self: center;
  }

  .closing    { padding: 72px 22px; }
  .closing h2 { font-size: 38px; }
  .closing > .closing-inner > p { font-size: 14px; }
  .email-form { flex-direction: column; align-items: stretch; }
  .email-form input  { max-width: 100%; }
  .email-form button { width: 100%; padding: 14px; font-size: 14px; }

  footer { padding: 18px 22px; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}

@media (max-width: 375px) {
  .hero h1   { font-size: 34px; }
  .different h2, .simple h2 { font-size: 30px; }
  .closing h2 { font-size: 32px; }
  .phone-wrap { width: 190px; }
}
