/* SharkFinEnhance™ Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0f1a;
  --bg2: #0f1729;
  --card: #141d30;
  --card-h: #1a2540;
  --ac: #00d4aa;
  --ac-dim: rgba(0, 212, 170, .15);
  --ac-glow: rgba(0, 212, 170, .3);
  --txt: #e8edf5;
  --txt2: #8a95a8;
  --txt3: #5a6478;
  --pos: #22c55e;
  --neg: #ef4444;
  --bdr: rgba(255, 255, 255, .06);
  --ff: 'DM Serif Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10, 15, 26, .85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr);
  width: 100%; box-sizing: border-box;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; color: var(--txt);
  min-width: 0; flex-shrink: 1; overflow: hidden;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; }
.nav-logo span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.2rem; font-weight: 600; letter-spacing: -.02em;
}
.nav-logo .ac { color: var(--ac); }
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--txt2); text-decoration: none; font-size: .9rem; font-weight: 400; transition: color .2s;
}
.nav-links a:hover { color: var(--txt); }
.nav-cta {
  color: var(--bg) !important; background: var(--ac);
  padding: .5rem 1.25rem; border-radius: 6px;
  font-weight: 600 !important; font-size: .85rem; transition: all .2s;
}
.nav-cta:hover { background: #00eabb; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 8px; margin-left: auto; flex-shrink: 0;
}
.hamburger span { width: 26px; height: 3px; background: var(--txt); border-radius: 2px; transition: all .3s; }
.nav-back { color: var(--txt2); text-decoration: none; font-size: .9rem; }
.nav-back:hover { color: var(--txt); }

/* BUTTONS */
.btn-p {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; background: var(--ac); color: var(--bg);
  border: none; border-radius: 8px; font-weight: 600; font-size: .95rem;
  cursor: pointer; text-decoration: none; transition: all .2s; font-family: var(--fb);
}
.btn-p:hover { background: #00eabb; transform: translateY(-2px); box-shadow: 0 8px 30px var(--ac-glow); }
.btn-s {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; background: transparent; color: var(--txt);
  border: 1px solid var(--bdr); border-radius: 8px; font-weight: 500; font-size: .95rem;
  cursor: pointer; text-decoration: none; transition: all .2s; font-family: var(--fb);
}
.btn-s:hover { border-color: var(--txt3); background: rgba(255, 255, 255, .03); }

/* SECTIONS */
section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; box-sizing: border-box; overflow-x: hidden; }
.s-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--ac); margin-bottom: 1rem; }
.s-title { font-family: var(--ff); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 1.25rem; }
.s-title em { font-style: italic; color: var(--ac); }
.s-sub { font-size: 1.05rem; color: var(--txt2); max-width: 600px; margin-bottom: 3rem; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 8rem 2rem 4rem; position: relative; overflow: hidden;
  max-width: 100vw; box-sizing: border-box;
}
.hero::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--ac-dim) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem; border: 1px solid var(--ac-dim); border-radius: 100px;
  font-size: .8rem; color: var(--ac); margin-bottom: 2rem; animation: fadeUp .8s ease;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--ac); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
  font-family: var(--ff); font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.15;
  font-weight: 400; max-width: 800px; margin-bottom: 1.5rem; animation: fadeUp .8s ease .1s both;
}
.hero h1 em { font-style: italic; color: var(--ac); }
.hero > p { font-size: 1.15rem; color: var(--txt2); max-width: 560px; margin-bottom: 2.5rem; animation: fadeUp .8s ease .2s both; }
.hero-btns { display: flex; gap: 1rem; animation: fadeUp .8s ease .3s both; max-width: 100%; box-sizing: border-box; }
.hero-term {
  margin-top: 3rem; padding: .6rem 1.5rem; background: var(--bg2);
  border: 1px solid var(--bdr); border-radius: 8px;
  font-family: 'SF Mono', 'Fira Code', monospace; font-size: .85rem; color: var(--txt3);
  animation: fadeUp .8s ease .4s both; max-width: 100%; box-sizing: border-box; word-break: break-word;
}
.hero-term code { color: var(--ac); }

/* FEATURES GRID */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.feat-card {
  background: var(--card); border: 1px solid var(--bdr); border-radius: 12px;
  padding: 2rem; transition: all .3s ease;
}
.feat-card:hover { background: var(--card-h); border-color: rgba(0, 212, 170, .2); transform: translateY(-4px); }
.feat-icon {
  width: 44px; height: 44px; background: var(--ac-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.3rem;
}
.feat-card h3 { font-family: var(--fb); font-size: 1.05rem; font-weight: 600; margin-bottom: .6rem; }
.feat-card p { font-size: .9rem; color: var(--txt2); line-height: 1.6; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; counter-reset: step; }
.step { position: relative; padding-top: 3rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 0; font-family: var(--ff); font-size: 1.1rem; color: var(--ac);
}
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.step p { font-size: .88rem; color: var(--txt2); line-height: 1.6; }

/* CONNECTORS */
.conn-section { text-align: center; }
.conn-grid { display: flex; justify-content: center; gap: 3rem; margin-top: 3rem; flex-wrap: wrap; }
.conn-item { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
a.conn-item { text-decoration: none; }
.conn-item span { font-size: .85rem; color: var(--txt2); }
.conn-item .tm { font-size: .6rem; vertical-align: super; }
.conn-icon {
  width: 72px; height: 72px; background: var(--card); border: 1px solid var(--bdr);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  transition: all .3s; overflow: hidden;
}
.conn-icon:hover { border-color: var(--ac); background: var(--ac-dim); }
.conn-icon img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.conn-icon svg { width: 40px; height: 40px; }

/* STATS */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  padding: 4rem 2rem; max-width: 900px; margin: 0 auto; text-align: center;
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); box-sizing: border-box;
}
.stat-val { font-family: var(--ff); font-size: clamp(2rem, 4vw, 3rem); color: var(--ac); display: block; }
.stat-lbl { font-size: .85rem; color: var(--txt2); margin-top: .25rem; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.price-card {
  background: var(--card); border: 1px solid var(--bdr); border-radius: 16px;
  padding: 2rem; display: flex; flex-direction: column; position: relative;
  transition: all .3s; box-sizing: border-box; min-width: 0;
}
.price-card.pop { border-color: var(--ac); box-shadow: 0 0 40px var(--ac-dim); }
.price-pop-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--ac); color: var(--bg); padding: .25rem 1rem; border-radius: 100px;
  font-size: .75rem; font-weight: 600; white-space: nowrap;
}
.price-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .25rem; }
.price-card .target { font-size: .8rem; color: var(--txt3); margin-bottom: 1.25rem; }
.price-amt { font-family: var(--ff); font-size: 2.2rem; color: var(--ac); display: block; }
.price-per { font-size: .85rem; color: var(--txt3); margin-bottom: 1.5rem; }
.price-card ul { list-style: none; flex: 1; margin-bottom: 1.5rem; }
.price-card li { font-size: .88rem; color: var(--txt2); padding: .4rem 0; padding-left: 1.5rem; position: relative; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--ac); }
.price-card li.coming::before { content: '◐'; color: var(--txt3); }
.price-card li.coming { color: var(--txt3); }
.price-card .btn-p, .price-card .btn-s { text-align: center; justify-content: center; width: 100%; }
.coming-badge {
  display: inline-block; background: rgba(255, 255, 255, .08); color: var(--txt3);
  padding: .15rem .6rem; border-radius: 4px; font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; margin-left: .5rem;
}

/* ADDONS */
.addons { margin-top: 4rem; }
.addons h3 { font-family: var(--ff); font-size: 1.5rem; margin-bottom: .5rem; }
.addons > p { color: var(--txt2); font-size: .95rem; margin-bottom: 2rem; }
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.addon-card {
  background: var(--card); border: 1px solid var(--bdr); border-radius: 12px;
  padding: 1.5rem; display: flex; justify-content: space-between; align-items: center;
  box-sizing: border-box; max-width: 100%;
}
.addon-card:hover { border-color: rgba(0, 212, 170, .15); }
.addon-info h4 { font-size: .95rem; font-weight: 600; margin-bottom: .25rem; }
.addon-info p { font-size: .82rem; color: var(--txt2); }
.addon-price { text-align: right; white-space: nowrap; }
.addon-price .amt { font-family: var(--ff); font-size: 1.3rem; color: var(--ac); }
.addon-price .per { font-size: .75rem; color: var(--txt3); display: block; }

/* AI SECTION */
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
.ai-text p { color: var(--txt2); margin-bottom: 1.5rem; font-size: 1rem; }
.ai-features { list-style: none; }
.ai-features li { padding: 1rem 0; border-bottom: 1px solid var(--bdr); display: flex; gap: 1rem; align-items: flex-start; }
.ai-features li:last-child { border-bottom: none; }
.ai-chk { color: var(--ac); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.ai-features strong { display: block; margin-bottom: .25rem; }
.ai-features span { font-size: .9rem; color: var(--txt2); }

/* CTA */
.cta-section { text-align: center; padding: 6rem 2rem; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, var(--ac-dim) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-family: var(--ff); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta-section h2 em { font-style: italic; color: var(--ac); }
.cta-section > p { color: var(--txt2); margin-bottom: 2rem; font-size: 1.05rem; }

/* APPS ROW */
.apps-row { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.app-badge {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem 1.25rem; background: var(--card); border: 1px solid var(--bdr);
  border-radius: 8px; color: var(--txt2); font-size: .85rem;
}
.app-badge svg { width: 20px; height: 20px; fill: currentColor; }

/* FOOTER */
footer {
  padding: 2.5rem 2rem; text-align: center;
  border-top: 1px solid var(--bdr); color: var(--txt3); font-size: .85rem;
}
footer a { color: var(--txt2); text-decoration: none; margin: 0 1rem; transition: color .2s; }
footer a:hover { color: var(--txt); }
footer .foot-brand { margin-bottom: .75rem; }

/* POLICY PAGES */
.policy-content { max-width: 800px; margin: 0 auto; padding: 7rem 2rem 4rem; }
.policy-content h1 { font-family: var(--ff); font-size: 2.2rem; margin-bottom: .5rem; }
.policy-content h1 em { font-style: italic; color: var(--ac); }
.policy-content .updated { color: var(--txt3); font-size: .9rem; margin-bottom: 2.5rem; }
.policy-content h2 { font-family: var(--ff); font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--ac); }
.policy-content h3 { font-size: 1rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: .5rem; }
.policy-content p { color: var(--txt2); margin-bottom: 1rem; font-size: .95rem; }
.policy-content ul, .policy-content ol { color: var(--txt2); margin-bottom: 1rem; padding-left: 1.5rem; font-size: .95rem; }
.policy-content li { margin-bottom: .4rem; }
.policy-content strong { color: var(--txt); }
.policy-content a { color: var(--ac); text-decoration: none; }
.policy-content a:hover { text-decoration: underline; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.policy-content th, .policy-content td {
  text-align: left; padding: .6rem .8rem; border-bottom: 1px solid var(--bdr);
  font-size: .88rem; color: var(--txt2);
}
.policy-content th { color: var(--txt); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.warn {
  background: rgba(239, 68, 68, .1); border: 1px solid rgba(239, 68, 68, .3);
  border-radius: 8px; padding: 1rem 1.25rem; margin: 1rem 0; color: #ef4444; font-size: .9rem;
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: rgba(10, 15, 26, .98);
    backdrop-filter: blur(20px); padding: 1.5rem; gap: 1rem;
    border-bottom: 1px solid var(--bdr); z-index: 200;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .hero > p { font-size: 1rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns a { text-align: center; justify-content: center; }
}
@media (max-width: 768px) {
  .feat-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .conn-grid { gap: 1.5rem; }
  section { padding: 3rem 1.25rem; }
  .nav-logo span { font-size: 1rem; }
  .nav-logo img { width: 28px; height: 28px; }
  .policy-content { padding: 6rem 1.25rem 3rem; }
  .policy-content h1 { font-size: 1.6rem; }
  .policy-content h2 { font-size: 1.2rem; }
  .policy-content table { font-size: .8rem; }
  .policy-content th, .policy-content td { padding: .4rem .5rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-term { font-size: .75rem; padding: .5rem 1rem; }
  .s-title { font-size: 1.5rem; }
}
