/* FrogTalk — /ios */
:root {
  --bg: #0d1117;
  --bg2: #161b22;
  --bg3: #21262d;
  --border: #30363d;
  --green: #4ade80;
  --green-dim: #22c55e;
  --green-dark: #16a34a;
  --text: #e6edf3;
  --text-muted: #7d8590;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 950px 640px at 50% 15%, rgba(74,222,128,.12) 0%, transparent 68%),
    radial-gradient(ellipse 520px 420px at 10% 80%, rgba(74,222,128,.08) 0%, transparent 60%),
    linear-gradient(180deg, #0d1117 0%, #0b0f14 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
body.ft-has-site-nav .shell { padding-top: 96px; }
.shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .01em;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(74,222,128,.28);
  background: rgba(24, 50, 34, .6);
  border-radius: 999px;
  color: #a7f3c5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(74,222,128,.5);
  animation: pulse 1.4s ease-in-out infinite;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(22,27,34,.92), rgba(13,17,23,.96));
  box-shadow: 0 20px 50px rgba(0,0,0,.32);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(74,222,128,.15), transparent 28%),
    radial-gradient(circle at 22% 85%, rgba(74,222,128,.10), transparent 24%);
  pointer-events: none;
}
.hero-copy,
.hero-visual { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.22);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1 {
  margin: 16px 0 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.title-accent {
  display: block;
  background: linear-gradient(135deg, var(--white) 30%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subtitle {
  margin: 16px 0 0;
  color: var(--text-muted);
  max-width: 640px;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
}
.hero-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #c2cad3;
}
.hero-points li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 0 0 5px rgba(74,222,128,.08);
}
.actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(34,197,94,.25);
}
.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(34,197,94,.35);
}
.btn-ghost {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover {
  border-color: rgba(74,222,128,.5);
  color: var(--green);
}
.kpis {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.kpi {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(74,222,128,.12);
  background: linear-gradient(180deg, rgba(22,39,31,.9), rgba(16,25,22,.92));
}
.kpi .num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #d7fbe2;
}
.kpi .lbl {
  margin-top: 4px;
  color: #93a09b;
  font-size: 13px;
}
.phone-card {
  justify-self: end;
  width: min(100%, 360px);
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(74,222,128,.18);
  background: linear-gradient(180deg, rgba(10,14,18,.96), rgba(21,28,25,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 16px 40px rgba(0,0,0,.38);
}
.phone-notch {
  width: 34%;
  height: 20px;
  margin: 0 auto 18px;
  border-radius: 0 0 18px 18px;
  background: #050607;
}
.phone-screen {
  padding: 18px;
  border-radius: 22px;
  min-height: 430px;
  background:
    radial-gradient(circle at 70% 15%, rgba(74,222,128,.18), transparent 24%),
    linear-gradient(180deg, #132019 0%, #10161c 45%, #0f1319 100%);
  border: 1px solid rgba(255,255,255,.04);
}
.screen-chip {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.2);
  color: #9df0bc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.screen-title {
  margin: 14px 0 8px;
  font-size: 1.6rem;
  font-weight: 800;
}
.screen-copy {
  color: #96a29f;
  font-size: 14px;
}
.screen-list {
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.screen-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.04);
}
.screen-row strong { display: block; font-size: 14px; }
.screen-row span { color: #86938e; font-size: 12px; }
.screen-pill {
  color: #9df0bc;
  font-size: 12px;
  font-weight: 700;
}
.section {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(22,27,34,.88), rgba(13,17,23,.94));
}
.section h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}
.section-copy {
  margin: 0 0 16px;
  color: var(--text-muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card {
  padding: 16px;
  border: 1px solid rgba(74,222,128,.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20,34,28,.86), rgba(16,23,27,.9));
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.card p {
  margin: 0;
  color: #9aa5a1;
  font-size: 14px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.step {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
}
.step-num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(74,222,128,.12);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 10px;
}
.step h3 { margin: 0 0 8px; font-size: 1rem; }
.step p { margin: 0; color: var(--text-muted); font-size: 14px; }
.share {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(19,31,25,.88), rgba(13,17,23,.94));
}
.share-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.share-copy {
  margin: 0 0 14px;
  color: var(--text-muted);
}
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.share-btn {
  border: 1px solid rgba(74,222,128,.18);
  background: rgba(255,255,255,.03);
  color: #daf8e4;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.share-btn:hover {
  border-color: rgba(74,222,128,.45);
  color: var(--green);
}
.footer {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.42); }
  70% { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .phone-card { justify-self: stretch; width: 100%; }
  .grid, .timeline, .kpis { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .shell { width: min(100vw - 24px, 1120px); padding-top: 18px; }
  .top { flex-direction: column; align-items: flex-start; }
  .hero { padding: 20px; }
  .phone-screen { min-height: 360px; }
  .actions .btn { width: 100%; }
}
