/* tabpods.com: one stylesheet for every page. No web fonts, no scripts, no third-party
   requests (see _headers): the site keeps the promise the privacy policy makes. */
:root {
  --ink: #16203a;
  --ink-2: #4b5563;
  --ink-3: #6b7280;
  --navy: #1f2a44;
  --navy-2: #2d3d66;
  --accent: #1a73e8;
  --accent-ink: #1558b0;
  --line: #e3e7ee;
  --surface: #f5f7fb;
  --card: #ffffff;
  --blue: #1a73e8;
  --red: #d93025;
  --green: #1e8e3e;
  --radius: 14px;
  --wrap: 1120px;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: #fff; color: var(--ink);
  font: 17px/1.6 Inter, "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
a:hover { color: var(--accent-ink); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--ink-2); }
.small { font-size: 14px; }

/* ---------- header ---------- */
.top { position: sticky; top: 0; z-index: 10; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--ink); text-decoration: none; letter-spacing: -0.02em; }
.brand img { width: 30px; height: 30px; }
.top nav { display: flex; align-items: center; gap: 26px; font-size: 15px; }
.top nav a { color: var(--ink-2); text-decoration: none; }
.top nav a:hover { color: var(--ink); }
.top nav a.btn { color: #fff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; border-radius: 10px; padding: 12px 20px;
  font-weight: 650; font-size: 16px; text-decoration: none; border: 1px solid transparent; white-space: nowrap;
}
.btn.primary { background: var(--navy); color: #fff; }
.btn.primary:hover { background: var(--navy-2); color: #fff; }
.btn.secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn.secondary:hover { border-color: #c8cfdb; color: var(--ink); }
.btn.small { padding: 8px 14px; font-size: 14px; }
.btn .soon { font-size: 12px; font-weight: 600; padding: 2px 7px; border-radius: 6px; background: rgba(255, 255, 255, 0.18); }
.btn.secondary .soon { background: var(--surface); color: var(--ink-3); }
.btn[aria-disabled="true"] { cursor: default; }
.btn svg { width: 20px; height: 20px; flex: none; }

/* ---------- hero ---------- */
.hero { background: linear-gradient(160deg, #eef2fb 0%, #f7f4ee 100%); padding: 72px 0 40px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1.08fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 54px; font-weight: 800; margin-bottom: 20px; }
.hero .lead { font-size: 20px; color: var(--ink-2); margin: 0 0 28px; max-width: 34em; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.hero .note { font-size: 15px; color: var(--ink-3); margin: 0; }
.hero .art { margin: -60px -150px -70px -40px; }

/* ---------- sections ---------- */
section { padding: 88px 0; }
section.alt { background: var(--surface); }
.eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin: 0 0 10px; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: 40px; font-weight: 800; margin-bottom: 14px; }
.section-head p { font-size: 19px; color: var(--ink-2); margin: 0; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.steps li { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; counter-increment: step; }
.steps li::before {
  content: counter(step); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 700; margin-bottom: 18px;
}
.steps h3 { font-size: 21px; margin-bottom: 8px; }
.steps p { margin: 0; color: var(--ink-2); }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 96px; }
.feature:last-child { margin-bottom: 0; }
.feature > *, .hero .wrap > * { min-width: 0; }
.feature.flip .text { order: 2; }
.feature h3 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.feature p { font-size: 18px; color: var(--ink-2); margin: 0 0 12px; }
.feature .visual { display: flex; justify-content: center; }
.shot { background: #fff; border-radius: 14px; box-shadow: 0 1px 2px rgba(22, 32, 58, 0.08), 0 18px 48px rgba(22, 32, 58, 0.16); overflow: hidden; }
.shot.popup { width: 400px; }
.shot.rules { width: 100%; max-width: 540px; padding: 22px 26px; }

/* A drawing of the browser's right-click menu with TabPods' entry open. */
.menu-art { position: relative; width: 460px; max-width: 100%; height: 250px; }
.menu-art .menu {
  position: absolute; background: #fff; border-radius: 9px; padding: 6px 0; font-size: 15px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(22, 32, 58, 0.2);
}
.menu-art .main { left: 0; top: 0; width: 270px; }
.menu-art .sub { left: 254px; top: 118px; width: 190px; }
.menu-art .menu div { padding: 7px 18px; color: #3c4043; display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.menu-art .menu .sep { border-top: 1px solid #e8eaed; margin: 5px 0; padding: 0; }
.menu-art .menu .hl { background: #e8f0fe; color: var(--ink); }
.menu-art .menu .more { margin-left: auto; color: #80868b; }
.menu-art .menu img { width: 16px; height: 16px; }
.dot { width: 10px; height: 10px; border-radius: 50%; flex: none; display: inline-block; }
.dot.blue { background: var(--blue); }
.dot.red { background: var(--red); }
.dot.green { background: var(--green); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card svg { width: 30px; height: 30px; color: var(--navy); margin-bottom: 14px; }
.card h3 { font-size: 19px; margin-bottom: 6px; }
.card p { margin: 0; color: var(--ink-2); font-size: 16px; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 400px)); gap: 24px; justify-content: center; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 34px; display: flex; flex-direction: column; }
.plan.pro { border: 2px solid var(--navy); position: relative; }
.plan h3 { font-size: 22px; margin-bottom: 8px; }
.plan .price { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; margin: 6px 0 2px; }
.plan .price small { font-size: 17px; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }
.plan .price-note { color: var(--ink-3); font-size: 15px; margin: 0 0 20px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.plan li { padding: 7px 0 7px 30px; position: relative; }
.plan li::before {
  content: ""; position: absolute; left: 2px; top: 13px; width: 14px; height: 8px;
  border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg);
}
.plan .btn { justify-content: center; }
.badge { position: absolute; top: -13px; left: 34px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }

/* ---------- privacy band ---------- */
.band { background: linear-gradient(150deg, #1f2a44 0%, #2d3d66 100%); color: #fff; }
.band .section-head p { color: #c9d4f2; }
.band .eyebrow { color: #8ab4f8; }
.band .card { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); }
.band .card svg { color: #8ab4f8; }
.band .card p { color: #c9d4f2; }
.band .more { text-align: center; margin: 36px 0 0; }
.band a { color: #fff; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 650; font-size: 18px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ink-3); font-weight: 400; font-size: 24px; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--ink-2); margin: 12px 0 0; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0; font-size: 15px; color: var(--ink-3); }
footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
footer a { color: var(--ink-2); text-decoration: none; }
footer a:hover { color: var(--ink); text-decoration: underline; }

/* ---------- document pages (privacy policy, uninstall) ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: 56px 24px 88px; }
.doc h1 { font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.doc .updated { color: var(--ink-3); margin: 0 0 32px; }
.doc h2 { font-size: 24px; margin: 40px 0 12px; }
.doc h3 { font-size: 18px; margin: 24px 0 8px; }
.doc p, .doc li { color: #2b3445; }
.doc ul { padding-left: 22px; }
.doc li { margin-bottom: 6px; }
.doc .summary { background: var(--surface); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 8px; }
.doc .summary p { margin: 0 0 8px; }
.doc .summary p:last-child { margin: 0; }
.doc table { border-collapse: collapse; width: 100%; font-size: 15px; margin: 12px 0; }
.doc th, .doc td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.doc th { background: var(--surface); font-weight: 650; }
.doc.center { text-align: center; }
.doc.center .cta { justify-content: center; }

/* ---------- small screens ---------- */
@media (max-width: 960px) {
  .hero .wrap, .feature { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 40px; }
  .hero .art { margin: -30px -20px -40px; }
  .feature { gap: 32px; margin-bottom: 72px; }
  .feature.flip .text { order: 0; }
  .steps, .grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: minmax(0, 440px); }
  .top nav a:not(.btn) { display: none; }
  section { padding: 64px 0; }
  .section-head h2 { font-size: 32px; }
  .shot.popup { width: 100%; max-width: 400px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 34px; }
  .hero .lead { font-size: 18px; }
  .doc { padding: 40px 16px 64px; }
  .doc h1 { font-size: 34px; }
  .menu-art { zoom: 0.76; } /* zoom, unlike transform, shrinks the layout box too */
}
