:root {
  --bg: #fbfbfb;
  --surface: #ffffff;
  --surface-soft: #f5f5f7;
  --line: #e6e6ea;
  --line-strong: #d7d7dc;
  --ink: #0c0c0f;
  --muted: #777c8a;
  --blue: #1d6fff;
  --green: #0abf53;
  --red: #ff3b30;
  --yellow: #ffbf1a;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.1);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(29, 111, 255, 0.06), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.site-header,
.hero,
.section-intro,
.feature-grid,
.product-shot,
.pricing-grid,
.testimonial-grid,
.final-cta,
.faq-section,
.site-footer {
  width: min(var(--container), calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.9rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  width: 32px;
  height: 32px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
}

.site-nav a {
  color: #24262d;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: #ff4d4f;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 77, 79, 0.22);
}

.hero {
  padding: 40px 0 52px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(29, 111, 255, 0.3);
  border-radius: 999px;
  background: rgba(29, 111, 255, 0.08);
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  max-width: 920px;
  margin: 30px auto 18px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
  color: #8b91a0;
}

.hero-demo {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.demo-window {
  width: min(100%, 470px);
  border: 2px solid rgba(24, 24, 28, 0.16);
  border-radius: 28px;
  background: #fffdf7;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.13);
  overflow: hidden;
  text-align: left;
}

.demo-topbar {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.demo-search {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #9aa0ad;
  font-weight: 500;
}

.demo-search::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border: 2px solid #d0d4de;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.demo-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  min-height: 246px;
  padding: 12px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.demo-prompt-list {
  display: grid;
  gap: 6px;
}

.demo-prompt {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 12px;
  color: #16181d;
  font-weight: 600;
}

.demo-prompt::before {
  content: "✦";
  margin-right: 10px;
  color: #1f2229;
  font-size: 0.95rem;
}

.demo-prompt.is-active {
  background: var(--surface-soft);
}

.demo-preview-card {
  align-self: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.demo-preview-label {
  color: #8890a0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-preview-title {
  margin: 12px 0 8px;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.demo-preview-card p {
  margin: 0;
  color: #6f7482;
  line-height: 1.7;
}

.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  background: #f3f3f4;
}

.demo-footer-brand {
  color: #c2c2c7;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.demo-footer-model {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: #555b68;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.chrome-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 1.1rem;
  font-weight: 700;
}

.demo-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 18px;
  border-bottom: 2px solid rgba(24, 24, 28, 0.16);
  background: linear-gradient(180deg, #ffd54d 0%, #ffc828 100%);
}

.demo-title-wrap {
  min-width: 0;
}

.demo-kicker {
  margin-bottom: 8px;
  color: #c45a30;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.demo-title {
  font-size: 2.15rem;
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.demo-subtitle {
  max-width: 250px;
  margin-top: 10px;
  color: #23252d;
  font-size: 0.95rem;
  line-height: 1.18;
  font-weight: 700;
}

.demo-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(24, 24, 28, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #18181c;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(24, 24, 28, 0.12);
}

.demo-main {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: #fffdf7;
}

.demo-card {
  padding: 16px;
  border: 2px solid rgba(24, 24, 28, 0.15);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 10px 26px rgba(18, 23, 39, 0.06);
}

.demo-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border: 2px solid rgba(24, 24, 28, 0.42);
  border-radius: 999px;
  background: #ffd146;
  color: #1d1d20;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-input {
  margin-top: 14px;
  min-height: 92px;
  padding: 18px 16px;
  border: 2px solid rgba(24, 24, 28, 0.24);
  border-radius: 18px;
  background: #ffffff;
  color: #8c929e;
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 600;
}

.demo-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: #3c4048;
  font-size: 0.95rem;
  font-weight: 700;
}

.demo-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: #1cb8b1;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid rgba(24, 24, 28, 0.22);
  border-radius: 16px;
  color: #1d1d20;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(18, 23, 39, 0.08);
}

.demo-button-light {
  background: #ffffff;
}

.demo-button-yellow {
  background: #ffd146;
}

.demo-button-red {
  background: #f56d5e;
  color: #ffffff;
}

.demo-card-prompts .demo-label {
  margin-bottom: 14px;
}

.demo-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.demo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(24, 24, 28, 0.1);
  border-radius: 16px;
  background: #ffffff;
  color: #3558ff;
  font-size: 0.94rem;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(18, 23, 39, 0.05);
}

.hero-proof {
  margin-top: 58px;
}

.hero-proof-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 252, 0.96) 100%);
  box-shadow: var(--shadow-md);
}

.hero-proof-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 77, 79, 0.1);
  color: #e24749;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof-card h2 {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero-proof-card p {
  max-width: 800px;
  margin: 18px auto 0;
  color: #677080;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-proof-compatible {
  margin-top: 22px;
  color: #22262f;
  font-size: 1rem;
  font-weight: 800;
}

.hero-proof-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.hero-proof-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: #3a4050;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.chrome-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-left: -6px;
}

.chrome-dot:first-child {
  margin-left: 0;
}

.chrome-red {
  background: #ea4335;
}

.chrome-yellow {
  background: #fbbc05;
}

.chrome-green {
  background: #34a853;
}

.chrome-blue {
  background: #4285f4;
}

.works-on {
  margin-top: 66px;
  text-align: center;
}

.works-on p {
  margin: 0 0 18px;
  font-size: 1.25rem;
  color: #707689;
}

.works-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.works-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.linkedin {
  background: #0a66c2;
}

.gmail {
  background: linear-gradient(135deg, #ea4335, #fbbc05);
}

.outlook {
  background: #0a64d5;
}

.medium {
  background: #111111;
}

.docs {
  background: #4285f4;
}

.x {
  background: #111111;
}

.facebook {
  background: #1877f2;
}

.reddit {
  background: #ff5700;
}

.works-more {
  display: inline-block;
  margin-top: 12px;
  color: #707689;
  font-size: 1.15rem;
}

.section-intro {
  padding-top: 18px;
  text-align: center;
}

.section-intro-left {
  text-align: left;
  width: 100%;
  padding-top: 0;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.section-intro p {
  max-width: 720px;
  margin: 16px auto 0;
  color: #8b91a0;
  font-size: 1.25rem;
  line-height: 1.6;
}

.section-intro-left p {
  margin-left: 0;
}

.page-hero,
.content-shell {
  width: min(var(--container), calc(100vw - 32px));
  margin: 0 auto;
}

.page-hero {
  padding: 56px 0 30px;
  text-align: center;
}

.page-hero h1 {
  max-width: 880px;
  margin: 18px auto 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.page-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #8b91a0;
  font-size: 1.18rem;
  line-height: 1.7;
}

.content-shell {
  padding: 14px 0 70px;
}

.legal-card,
.info-card,
.plan-card,
.price-summary,
.comparison-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.legal-card,
.info-card,
.comparison-table-wrap {
  padding: 28px;
}

.legal-stack,
.info-grid,
.plan-grid {
  display: grid;
  gap: 18px;
}

.legal-stack {
  margin-top: 18px;
}

.legal-card h2,
.info-card h2,
.price-summary h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.legal-card h3,
.info-card h3 {
  margin: 22px 0 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.legal-card p,
.legal-card li,
.info-card p,
.plan-card p,
.price-summary p {
  color: #62697a;
  line-height: 1.8;
}

.legal-card ul,
.info-card ul,
.plan-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-card li,
.info-card li,
.plan-card li {
  margin-top: 8px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.info-card h3 {
  margin-top: 0;
}

.plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.plan-card {
  padding: 30px;
}

.plan-card-primary {
  background: linear-gradient(180deg, rgba(29, 111, 255, 0.05), rgba(255, 255, 255, 1));
}

.plan-price {
  margin: 20px 0 10px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.plan-price span {
  font-size: 1rem;
  color: #707688;
  letter-spacing: normal;
  font-weight: 700;
}

.plan-card .pricing-eyebrow {
  margin-bottom: 14px;
}

.plan-card .pricing-link {
  margin-top: 24px;
}

.price-summary {
  margin-top: 22px;
  padding: 30px;
  text-align: center;
}

.price-summary p {
  max-width: 780px;
  margin: 0 auto;
}

.comparison-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table th {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6f7482;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:last-child,
.comparison-table th:last-child {
  text-align: right;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.testimonial-card,
.pricing-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  padding: 26px 24px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 800;
}

.feature-card p {
  margin: 14px 0 0;
  color: #6e7381;
  line-height: 1.75;
}

.product-shot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  gap: 34px;
  align-items: center;
  margin-top: 42px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 111, 255, 0.09);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-shot-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.product-shot-copy p {
  margin: 0;
  color: #6f7482;
  font-size: 1.15rem;
  line-height: 1.75;
}

.benefit-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.benefit-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.product-shot-panel {
  border: 2px solid rgba(24, 24, 28, 0.16);
  border-radius: 28px;
  background: #fffdf7;
  box-shadow: var(--shadow-md);
  padding: 18px 18px 16px;
}

.panel-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-window-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  border: 2px solid rgba(24, 24, 28, 0.42);
  background: #ffd146;
  color: #1d1d20;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 16px;
  border: 2px solid rgba(24, 24, 28, 0.24);
  background: #ffd146;
  color: #1d1d20;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(18, 23, 39, 0.08);
}

.panel-conversation {
  position: relative;
  margin-top: 14px;
  padding-right: 14px;
}

.panel-conversation::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 8px;
  height: 280px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5f1e7 0%, #ece6d8 100%);
}

.panel-conversation::before {
  content: "";
  position: absolute;
  top: 116px;
  right: 1px;
  width: 6px;
  height: 64px;
  border-radius: 999px;
  background: rgba(24, 24, 28, 0.18);
  z-index: 1;
}

.panel-user-label,
.panel-assistant-label {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-user-label {
  text-align: right;
  color: #e46a52;
}

.panel-user-bubble {
  max-width: 360px;
  margin: 10px 22px 0 auto;
  padding: 18px 20px;
  border: 2px solid rgba(24, 24, 28, 0.28);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff0b8 0%, #ffe88d 100%);
  color: #2d2f36;
  font-size: 0.97rem;
  line-height: 1.45;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(18, 23, 39, 0.06);
}

.panel-assistant-label {
  margin-top: 14px;
  color: #3558ff;
}

.panel-assistant-card {
  margin-top: 8px;
  padding: 16px 18px 18px;
  border: 2px solid rgba(24, 24, 28, 0.22);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 23, 39, 0.06);
}

.panel-assistant-title {
  margin: 0;
  color: #1f44b5;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.panel-assistant-card p:last-child {
  margin: 12px 0 0;
  color: #2f333d;
  font-size: 0.98rem;
  line-height: 1.7;
}

.panel-divider {
  margin: 16px 0 14px;
  border-top: 1px solid rgba(24, 24, 28, 0.12);
}

.panel-followups {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.panel-followups span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(24, 24, 28, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: #3558ff;
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(18, 23, 39, 0.05);
}

.panel-composer {
  margin-top: 14px;
  min-height: 82px;
  padding: 16px 16px;
  border: 2px solid rgba(24, 24, 28, 0.24);
  border-radius: 18px;
  background: #ffffff;
  color: #8a909c;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
}

.panel-compose-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.panel-compose-footer span:first-child {
  max-width: 270px;
  color: #6e737f;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 700;
}

.panel-send-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 16px;
  border: 2px solid rgba(214, 86, 66, 0.3);
  background: #f56d5e;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(245, 109, 94, 0.18);
}

.panel-status {
  margin-top: 14px;
  color: #177f53;
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.pricing-card {
  padding: 28px;
}

.pricing-card-primary {
  background: linear-gradient(180deg, rgba(29, 111, 255, 0.05), rgba(255, 255, 255, 1));
}

.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(12, 12, 15, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-card-primary .pricing-eyebrow {
  background: rgba(29, 111, 255, 0.12);
  color: var(--blue);
}

.pricing-card h3 {
  margin: 18px 0 10px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.pricing-card p {
  margin: 0;
  color: #6f7482;
  line-height: 1.75;
}

.pricing-price {
  margin: 18px 0 10px;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.pricing-price span {
  font-size: 0.98rem;
  letter-spacing: normal;
  color: #6f7482;
  font-weight: 700;
}

.pricing-card ul {
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.pricing-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

.pricing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #ffffff;
  font-weight: 700;
}

.pricing-link-primary {
  background: #ff4d4f;
  border-color: #ff4d4f;
  color: #ffffff;
}

.testimonial-card {
  padding: 24px;
  background: #ffffff;
}

.testimonial-card p {
  margin: 0;
  line-height: 1.75;
  color: #3d4250;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 16px;
  color: #8d93a2;
  font-size: 0.95rem;
  font-weight: 700;
}

.final-cta {
  margin-top: 26px;
  padding: 34px 24px 8px;
  text-align: center;
}

.final-cta h2 {
  margin: 20px 0 12px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.final-cta p {
  max-width: 720px;
  margin: 0 auto;
  color: #8b91a0;
  font-size: 1.15rem;
  line-height: 1.75;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 56px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 999px;
  background: #1f2229;
  color: #ffffff;
  font-weight: 700;
}

.faq-section {
  padding: 34px 0 70px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  padding: 0 22px;
  background: #ffffff;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.06rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 22px;
  color: #707688;
  line-height: 1.75;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  color: #858b9a;
}

.site-footer strong {
  display: block;
  color: #111217;
  font-size: 1rem;
  font-weight: 800;
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .feature-grid,
  .pricing-grid,
  .testimonial-grid,
  .product-shot {
    grid-template-columns: 1fr;
  }

  .product-shot {
    gap: 24px;
  }

  .product-shot-panel {
    max-width: 620px;
  }

  .info-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 16px 18px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 4.2rem);
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .demo-window {
    border-radius: 18px;
  }

  .demo-title {
    font-size: 1.8rem;
  }

  .demo-main,
  .demo-chip-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-card {
    padding: 28px 24px;
  }

  .feature-grid,
  .pricing-grid,
  .testimonial-grid,
  .info-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .panel-followups span {
    width: 100%;
  }

  .panel-compose-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-compose-footer span:first-child {
    max-width: none;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .page-hero,
  .content-shell,
  .section-intro,
  .feature-grid,
  .product-shot,
  .pricing-grid,
  .testimonial-grid,
  .final-cta,
  .faq-section,
  .site-footer {
    width: min(var(--container), calc(100vw - 24px));
  }

  .site-nav {
    width: 100%;
  }

  .header-cta {
    width: 100%;
  }

  .hero-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .chrome-cta {
    width: 100%;
    justify-content: center;
  }

  .demo-header {
    padding: 18px 18px 16px;
  }

  .demo-title {
    font-size: 1.55rem;
  }

  .demo-subtitle {
    font-size: 0.88rem;
  }

  .demo-close {
    width: 46px;
    height: 46px;
    font-size: 1.55rem;
  }

  .hero-proof-card {
    padding: 24px 18px;
  }

  .hero-proof-card h2 {
    font-size: 1.7rem;
  }

  .hero-proof-card p {
    font-size: 1rem;
  }

  .hero-proof-tags span {
    width: 100%;
  }

  .pricing-card,
  .feature-card,
  .testimonial-card {
    padding: 22px 20px;
  }
}
