/* ========== Clockd Landing — dark green, warm, human ========== */
:root {
  --green:        #01C971;   /* brand green, roughly */
  --green-bright: #00E67F;
  --green-deep:   #0A3A28;
  --bg:           #06231A;   /* hero dark */
  --bg-2:         #0B2E22;
  --ink:          #0C1B14;
  --ink-soft:     #1A2C24;
  --cream:        #F5F1E8;
  --paper:        #FAF7EF;
  --paper-2:      #F0EBDC;
  --amber:        #F0B42A;
  --gray:         #6B7A72;
  --line:         rgba(255,255,255,.08);
  --line-ink:     rgba(12,27,20,.1);
  --radius:       20px;
  --radius-lg:    28px;
  --radius-sm:    12px;
  --shadow:       0 30px 60px -20px rgba(0,0,0,.4), 0 10px 30px -10px rgba(0,0,0,.3);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.serif { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #052015; }
.btn-primary:hover { background: var(--green-bright); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-lg { padding: 16px 26px; font-size: 16px; }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6,35,26,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: #fff;
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 16px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 40px;
}
.nav-logo img { display: block; height: 22px; width: auto; }
.nav-links {
  display: flex; gap: 28px; justify-self: center;
}
.nav-links a {
  color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 6px 0;
}
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; gap: 10px; }
.nav-burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 36px; height: 36px; padding: 8px;
  flex-direction: column; gap: 4px;
}
.nav-burger span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; }
header.nav .mobile-menu, .mobile-menu {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
}
header.nav .mobile-menu[hidden], .mobile-menu[hidden] { display: none !important; }
.mobile-menu a { color: #fff; text-decoration: none; padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 12px; align-self: flex-start; }

/* ========== HERO ========== */
.hero {
  position: relative;
  background: var(--bg);
  color: #fff;
  overflow: hidden;
  padding: 80px 0 120px;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 800px 500px at 85% 30%, rgba(0,230,127,.15), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 80%, rgba(0,230,127,.08), transparent 70%),
    linear-gradient(180deg, #062319 0%, #041912 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 80%);
}
.hero-inner {
  position: relative;
  max-width: 1320px; margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(0,230,127,.1);
  border: 1px solid rgba(0,230,127,.3);
  font-size: 13px;
  font-weight: 500;
  color: var(--green-bright);
  margin-bottom: 26px;
}
.pill-dot { width: 8px; height: 8px; background: var(--green-bright); border-radius: 50%; box-shadow: 0 0 12px var(--green-bright); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 26px;
  color: #fff;
}
h1 em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-bright);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 0 36px;
}

.notify {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  max-width: 540px;
  position: relative;
}
.notify input {
  flex: 1; min-width: 200px;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 10px 18px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}
.notify input::placeholder { color: rgba(255,255,255,.45); }
.notify .btn-primary { flex-shrink: 0; }
.notify-note {
  position: absolute;
  bottom: -26px; left: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.notify-note.success { color: var(--green-bright); }

.store-badges {
  display: flex; gap: 12px; margin-top: 56px; flex-wrap: wrap;
}
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px 10px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,.04);
  transition: background .15s ease, border-color .15s ease;
}
.store-badge:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge-text .tiny { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }
.store-badge-text .big { font-size: 15px; font-weight: 600; }
.store-badge-light {
  background: var(--bg);
  color: #fff;
  border-color: var(--bg);
}
.store-badge-light:hover { background: var(--ink); border-color: var(--ink); }

/* ========== HERO PHONES ========== */
.hero-phones {
  position: relative;
  height: 620px;
  perspective: 1200px;
}
.phone {
  position: absolute;
  width: 300px;
  aspect-ratio: 9/19.5;
  background: #0a0f0d;
  border: 2px solid #1a1f1d;
  border-radius: 42px;
  padding: 8px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(0,0,0,.2);
}
.phone::before {
  content: "";
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  color: #fff;
  display: flex; flex-direction: column;
}
.phone-back {
  top: 20px; right: 80px;
  transform: rotate(3deg);
  z-index: 1;
}
.phone-front {
  top: 100px; left: 100px;
  z-index: 2;
  transform: rotate(-2deg);
}

/* Phone common */
.sbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 6px;
  font-size: 13px; font-weight: 600;
  color: #fff;
}
.sbar-right { display: inline-flex; gap: 5px; align-items: center; }
.sbar-right svg { width: 16px; height: 11px; fill: #fff; }
.sbar-right svg[viewBox="0 0 22 10"] { width: 22px; }

/* Activity list phone */
.p-head { padding: 12px 16px 4px; }
.p-head-top { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 12px;}
.p-search { font-size: 16px; }
.p-tabs { display: flex; gap: 6px; margin-bottom: 14px; }
.p-tabs span {
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.p-tabs span.on { background: var(--green); color: #052015; font-weight: 600; }
.p-date-row { display: flex; justify-content: space-between; font-size: 11.5px; color: rgba(255,255,255,.55); padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 10px;}
.p-total { color: var(--green-bright); font-weight: 600; }

.entry {
  display: flex; gap: 10px; align-items: center;
  margin: 6px 12px;
  padding: 10px;
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.entry-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.entry-icon svg { width: 18px; height: 18px; color: #052015; }
.entry-icon-phone { background: #fff; }
.entry-icon-phone svg { color: var(--green-deep); }
.entry-icon-matter { background: rgba(255,255,255,.1); }
.entry-icon-matter svg { color: var(--green-bright); }
.entry-body { flex: 1; min-width: 0; }
.entry-title { font-size: 12px; font-weight: 600; color: #fff; }
.entry-sub { font-size: 10.5px; color: rgba(255,255,255,.55); margin-top: 2px; }
.entry-tags { display: flex; gap: 4px; margin-top: 6px; }
.tag {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
  background: rgba(0,230,127,.15);
  color: var(--green-bright);
  text-transform: none;
}
.tag-amber { background: rgba(240,180,42,.2); color: var(--amber); }
.tag-gray { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.tag-green { background: var(--green); color: #052015; }
.entry-right { text-align: right; }
.entry-hrs { font-size: 12px; font-weight: 700; color: #fff; }
.entry-hrs small { font-size: 8px; color: rgba(255,255,255,.55); font-weight: 500; }
.entry-time { font-size: 9.5px; color: rgba(255,255,255,.45); margin-top: 2px; }

.entry-swipe { background: rgba(0,230,127,.12); }
.swipe-confirm {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--green);
  color: #052015;
  font-weight: 700;
  font-size: 12px;
  border-radius: 10px;
  margin-right: 10px;
}
.swipe-confirm svg { width: 14px; height: 14px; color: #052015; }

.date-divider { font-size: 11px; color: rgba(255,255,255,.55); padding: 10px 16px 4px; }

.p-nav {
  margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
  padding: 10px 10px 24px;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.p-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 9px; color: rgba(255,255,255,.5);
}
.p-nav-item.on { color: var(--green-bright); }
.p-nav-item svg { width: 18px; height: 18px; }
.p-nav-fab {
  background: var(--green);
  width: 46px; height: 46px;
  border-radius: 50%;
  margin-top: -18px;
  box-shadow: 0 10px 24px rgba(0,230,127,.4);
}
.p-nav-fab svg { color: #052015; width: 22px; height: 22px; }

/* Timer phone */
.phone-screen-timer {
  background: var(--bg);
}
.timer-wrap {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center;
  padding: 40px 20px 20px;
  text-align: center;
}
.avatar-lg {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(0,230,127,.15);
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 600;
  color: var(--green-bright);
  margin-bottom: 14px;
}
.timer-name { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 2px;}
.timer-matter {
  font-family: "Instrument Serif", serif; font-style: italic;
  font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 28px;
}
.timer-count {
  font-size: 40px;
  font-weight: 700;
  color: var(--green-bright);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  text-shadow: 0 0 24px rgba(0,230,127,.4);
}
.timer-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,.65);
}
.switch {
  width: 28px; height: 16px;
  border-radius: 100px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  position: relative;
}
.switch span {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  position: absolute; top: 1px; left: 1px;
}
.call-controls {
  display: flex; justify-content: center; gap: 24px;
  padding: 0 20px 40px;
}
.call-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.call-btn svg { width: 22px; height: 22px; }
.call-end { background: #E55039; width: 58px; height: 58px; }

/* ========== LOGOS STRIP ========== */
.logos {
  background: var(--paper);
  padding: 48px 28px;
  text-align: center;
}
.logos-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin: 0 0 20px;
}
.logos-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 32px 56px;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gray);
  opacity: .7;
}

/* ========== SECTIONS ========== */
.section-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow-light { color: var(--green-bright); }
.h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 24px;
  max-width: 900px;
}
.h2-em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--green); }
.h2-light { color: #fff; }
.h2-light .h2-em { color: var(--green-bright); }
.section-sub {
  font-size: 19px; line-height: 1.55;
  color: var(--gray);
  max-width: 680px;
  margin: 0 0 56px;
}

/* ========== WHY ========== */
.why {
  background: var(--paper);
  padding: 120px 0;
  border-top: 1px solid var(--line-ink);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line-ink);
  border-radius: var(--radius);
  padding: 28px;
  grid-column: span 2;
}
.why-card-hero {
  grid-column: span 3;
  grid-row: span 2;
  background: var(--ink);
  color: #fff;
  border-color: transparent;
  display: flex; flex-direction: column;
  padding: 32px;
}
.why-card-hero h3 { color: #fff; }
.why-card-hero p { color: rgba(255,255,255,.7); }
.why-card:nth-child(2), .why-card:nth-child(3) { grid-column: span 3; }
.why-card:nth-child(4), .why-card:nth-child(5), .why-card:nth-child(6) { grid-column: span 2; }

.why-card h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 20px 0 8px;
}
.why-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray);
  margin: 0;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,201,113,.1);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card-art {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #102E23, #061E15);
  border-radius: var(--radius-sm);
  padding: 36px 24px;
  position: relative;
  overflow: hidden;
}
.why-card-art::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(0,230,127,.15), transparent 50%);
}
.mini-timer {
  position: relative;
  text-align: center;
  color: #fff;
}
.mini-timer-time {
  font-size: 42px; font-weight: 700;
  color: var(--green-bright);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 20px rgba(0,230,127,.35);
  letter-spacing: 0.02em;
}
.mini-timer-matter {
  font-family: "Instrument Serif", serif; font-style: italic;
  font-size: 14px; color: rgba(255,255,255,.7); margin-top: 6px;
}
.mini-timer-bar {
  width: 200px; height: 4px; border-radius: 100px;
  background: rgba(255,255,255,.1);
  margin: 14px auto 0;
  overflow: hidden;
}
.mini-timer-bar > div {
  width: 64%;
  height: 100%;
  background: var(--green-bright);
  border-radius: 100px;
  animation: progress 3s ease-in-out infinite alternate;
}
@keyframes progress {
  from { width: 40%; } to { width: 78%; }
}

/* ========== PRODUCT SHOWCASE ========== */
.product {
  background: var(--bg);
  color: #fff;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.product::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 1000px 600px at 90% 10%, rgba(0,230,127,.08), transparent 60%);
  pointer-events: none;
}
.product .section-inner { position: relative; }
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.showcase:first-of-type { border-top: 0; padding-top: 80px; }
.showcase-reverse .showcase-copy { order: 2; }
.showcase-reverse .showcase-art { order: 1; }
.step {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-bright);
  font-weight: 600;
  margin-bottom: 16px;
}
.h3-light {
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
}
.p-light { color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.55; margin: 0 0 24px; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.feature-list li:first-child { border-top: 0; }
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 16px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--green);
  background-image:
    linear-gradient(45deg, transparent 40%, #052015 40%, #052015 46%, transparent 46%, transparent 54%, #052015 54%, #052015 60%, transparent 60%);
}
.feature-list li::before {
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.showcase-art { display: flex; justify-content: center; align-items: center; }
.phone-standalone {
  position: static;
  transform: none;
  width: 320px;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.7);
}

/* Browser mockup */
.browser {
  width: 100%; max-width: 600px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6), 0 20px 40px -20px rgba(0,0,0,.3);
  color: var(--ink);
}
.browser-small { max-width: 440px; }
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #E8E4DA;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #ED6B5F; } .dot.y { background: #F5BF4F; } .dot.g { background: #61C554; }
.browser-url {
  flex: 1;
  margin-left: 8px;
  padding: 4px 10px;
  background: rgba(255,255,255,.8);
  border-radius: 6px;
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}
.browser-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 360px;
}
.browser-body-portal { display: block; padding: 20px; min-height: 0; }
.dash-side {
  background: var(--paper-2);
  padding: 20px 14px;
  border-right: 1px solid rgba(0,0,0,.06);
}
.dash-side-logo { height: 14px; width: auto; margin-bottom: 20px; filter: brightness(.2); }
.dash-side-logo { filter: none; }
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav-item {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--gray);
  cursor: default;
}
.dash-nav-item.on { background: #fff; color: var(--ink); font-weight: 600; }
.dash-main { padding: 20px; }
.dash-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.dash-h { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.dash-sub { font-size: 12px; color: var(--gray); margin-top: 2px; }
.dash-new { background: var(--green); color: #052015; padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 20px; }
.dash-stat { background: var(--paper); border-radius: 8px; padding: 10px; }
.dash-stat-v { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.dash-stat-v small { font-size: 10px; color: var(--gray); font-weight: 500; }
.dash-stat-k { font-size: 10px; color: var(--gray); margin-top: 2px; }
.dash-stat-d { font-size: 10px; margin-top: 4px; font-weight: 600; }
.dash-stat-d.up { color: var(--green); }
.dash-chart { background: var(--paper); border-radius: 8px; padding: 14px; }
.chart-title { font-size: 12px; font-weight: 600; color: var(--gray); margin-bottom: 10px; }
.chart-bars { display: flex; gap: 8px; align-items: flex-end; height: 90px; }
.chart-bars > div {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, var(--green-bright), var(--green));
  border-radius: 4px;
  min-height: 8px;
}
.chart-x { display: flex; gap: 8px; margin-top: 6px; font-size: 10px; color: var(--gray); }
.chart-x span { flex: 1; text-align: center; }

/* Portal */
.portal-head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 14px; border-bottom: 1px solid var(--line-ink); margin-bottom: 14px; }
.portal-client { font-size: 16px; font-weight: 700; }
.portal-matter { font-family: "Instrument Serif", serif; font-style: italic; font-size: 13px; color: var(--gray); margin-top: 2px; }
.portal-tot { font-size: 22px; font-weight: 700; color: var(--green); letter-spacing: -0.01em; }
.portal-tot small { color: var(--gray); font-weight: 500; font-size: 14px; }
.portal-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line-ink); font-size: 13px; }
.portal-row > div { flex: 1; }
.portal-row small { font-size: 11px; color: var(--gray); }
.portal-row .portal-amt { font-weight: 600; }
.dot-g { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.dot-y { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.portal-btn {
  width: 100%;
  margin-top: 14px;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}

/* ========== STORY ========== */
.story {
  background: var(--paper);
  padding: 140px 0;
  border-top: 1px solid var(--line-ink);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.story-photo {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-deep);
  max-width: 440px;
  margin: 0 auto;
}
.photo-real {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 55% center;
  display: block;
}
.photo-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(6,35,26,.85);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 14px;
  color: #fff;
  display: flex; flex-direction: column;
}
.photo-tag strong { font-size: 16px; }
.photo-tag span { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 2px; }
.story-copy p {
  font-size: 18px; line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 560px;
}
.story-copy h2 { margin-bottom: 28px; }
.story-copy .serif { font-size: 1.2em; color: var(--green); line-height: 0; position: relative; top: .15em; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--paper-2);
  padding: 120px 0;
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.t-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
  border: 1px solid var(--line-ink);
}
.t-card blockquote {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.4;
  font-family: "Instrument Serif", serif;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.t-card blockquote::before { content: "\201C"; color: var(--green); font-size: 1.2em; }
.t-card blockquote::after { content: "\201D"; color: var(--green); font-size: 1.2em; }
.t-who { font-size: 14px; font-weight: 600; }
.t-firm { font-size: 13px; color: var(--gray); margin-top: 2px; }

/* ========== CTA ========== */
.cta {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
  text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; padding: 0 28px; }
.cta-h {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 18px;
  color: #fff;
}
.cta-h .h2-em { color: var(--green-bright); }
.cta p { font-size: 18px; color: rgba(255,255,255,.7); margin: 0 0 32px; }
.notify-big { max-width: 100%; margin: 0 auto; }
.notify-big input { font-size: 16px; }
.cta-badges { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact {
  background: var(--paper);
  padding: 120px 0;
  border-top: 1px solid var(--line-ink);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-copy p { color: var(--gray); font-size: 17px; line-height: 1.55; margin: 0 0 36px; max-width: 440px; }
.contact-facts { display: flex; flex-direction: column; gap: 20px; }
.contact-facts .cf-k {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); margin-bottom: 4px;
}
.contact-facts .cf-v { font-size: 16px; color: var(--ink); font-weight: 500; text-decoration: none; }
a.cf-v:hover { color: var(--green); }

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line-ink);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form label span { font-size: 13px; font-weight: 600; color: var(--ink); }
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--line-ink);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--paper);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
  resize: vertical;
  color: var(--ink);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green); background: #fff;
}
.form-note { font-size: 13px; color: var(--green); min-height: 1.2em; }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg);
  color: #fff;
  padding: 80px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
}
.foot-brand p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.55; max-width: 340px; margin: 14px 0 24px; }
.foot-logo { height: 22px; }
.foot-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.store-badge-sm { padding: 8px 14px 8px 12px; }
.store-badge-sm svg { width: 20px; height: 20px; }
.store-badge-sm .big { font-size: 13px; }
.foot-col h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  color: rgba(255,255,255,.5); margin: 0 0 18px;
}
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col a {
  color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px;
}
.foot-col a:hover { color: var(--green-bright); }
.foot-addr { color: rgba(255,255,255,.6); font-size: 14px; }
.foot-base {
  max-width: 1240px; margin: 60px auto 0;
  padding: 24px 28px 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,.45);
  font-size: 13px;
}

/* ========== RESPONSIVE ========== */
.desk-only { display: inline; }
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr; }
  .mobile-menu.open:not([hidden]) { display: flex; }

  .hero { padding: 48px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-phones { height: 560px; max-width: 400px; margin: 0 auto; width: 100%; }
  .phone-back { right: 40px; top: 0; }
  .phone-front { left: 20px; top: 80px; }
  .desk-only { display: none; }

  .why { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card,
  .why-card-hero,
  .why-card:nth-child(2),
  .why-card:nth-child(3),
  .why-card:nth-child(4),
  .why-card:nth-child(5),
  .why-card:nth-child(6) { grid-column: span 1; grid-row: auto; }
  .why-card-art { min-height: 160px; padding: 24px; }

  .product { padding: 80px 0; }
  .showcase { grid-template-columns: 1fr; gap: 48px; padding: 60px 0; }
  .showcase-reverse .showcase-copy { order: initial; }
  .showcase-reverse .showcase-art { order: initial; }

  .story { padding: 80px 0; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-photo { max-width: 320px; }

  .testimonials { padding: 80px 0; }
  .t-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }

  .cta { padding: 80px 0; }

  .contact { padding: 80px 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-brand { grid-column: span 2; }
  .foot-base { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero-inner { padding: 0 20px; }
  .section-inner { padding: 0 20px; }
  h1 br { display: none; }
  .hero-phones { height: 520px; }
  .phone { width: 260px; }
  .phone-back { right: 20px; }
  .phone-front { left: 10px; top: 60px; }
  .notify { border-radius: 18px; padding: 10px; }
  .notify input { min-width: 0; width: 100%; padding: 8px 12px; }
  .notify-note { position: static; margin-top: 6px; padding-left: 6px; }
  .store-badges { gap: 10px; }
  .contact-form { padding: 24px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .foot-brand { grid-column: span 1; }
  .logos-row { gap: 16px 32px; font-size: 17px; }
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  background: var(--paper);
  min-height: 100vh;
}
.legal-head {
  background: var(--bg);
  color: #fff;
  padding: 60px 0 80px;
}
.legal-head .section-inner { max-width: 860px; }
.legal-head .back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px;
  margin-bottom: 24px;
}
.legal-head .back-link:hover { color: #fff; }
.legal-head h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 12px;
}
.legal-head .updated { color: rgba(255,255,255,.55); font-size: 14px; }
.legal-body { max-width: 760px; margin: 0 auto; padding: 60px 28px 120px; }
.legal-body h2 {
  font-size: 24px; font-weight: 600; margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  font-size: 16px; line-height: 1.65; color: var(--ink-soft);
  margin: 0 0 14px;
}
.legal-body ul { padding-left: 20px; }
.legal-body a { color: var(--green); }
.legal-toc {
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line-ink);
  border-radius: 14px;
  margin-bottom: 40px;
}
.legal-toc h3 { margin: 0 0 10px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); font-weight: 600;}
.legal-toc ol { margin: 0; padding-left: 20px; }
.legal-toc li { font-size: 14px; margin-bottom: 4px; }
.legal-toc a { text-decoration: none; color: var(--ink); }
.legal-toc a:hover { color: var(--green); }
