/* Landing — Guarantee Pay marketing system */
:root {
  --gp-land-bg: #F4EFEE;
  --gp-land-surface: #FFFCFA;
  --gp-land-ink: #1A1010;
  --gp-land-text: #3A2828;
  --gp-land-muted: #6A5252;
  --gp-land-line: #E2CFCC;
  --gp-land-wine: #8F3535;
  --gp-land-wine-deep: #6B2828;
  --gp-land-rose: #C45C5C;
  --gp-land-rose-hover: #B04E4E;
  --gp-land-soft: #F0DEDB;
  --gp-land-highlight: #FFF8F6;
  --gp-land-font: "DM Sans", "Segoe UI", sans-serif;
  --gp-land-display: "Fraunces", Georgia, "Times New Roman", serif;
}

.gp-landing {
  margin: 0;
  background: var(--gp-land-bg);
  color: var(--gp-land-text);
  font-family: var(--gp-land-font);
  overflow-x: hidden;
}

.gp-landing * {
  box-sizing: border-box;
}

.gp-landing a {
  color: inherit;
}

.gp-landing .gp-wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

/* Site header — full-bleed sticky bar */
.gp-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(244, 239, 238, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.gp-site-header.is-stuck {
  border-bottom-color: var(--gp-land-line);
  background: rgba(255, 252, 250, 0.97);
}

.gp-site-header-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.gp-site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.gp-site-logo img {
  height: 40px !important;
  max-height: 40px !important;
  width: auto;
  display: block;
}

.gp-site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 18px;
  flex: 1;
  min-width: 0;
}

.gp-site-nav a {
  color: var(--gp-land-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
  padding: 6px 0;
}

.gp-site-nav a:hover {
  color: var(--gp-land-wine);
}

.gp-site-nav .gp-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gp-land-rose);
  color: #fff !important;
  padding: 0.5rem 0.95rem;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 4px;
}

.gp-site-nav .gp-nav-cta:hover {
  background: var(--gp-land-rose-hover);
  color: #fff !important;
}

.gp-nav-toggle {
  display: none;
  border: 1px solid var(--gp-land-line);
  background: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--gp-land-wine);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.gp-plan-free {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff;
  border: 2px solid var(--gp-land-wine);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 32px;
}

.gp-plan-free h3 {
  margin: 0 0 4px;
  font-family: var(--gp-land-display);
  font-size: 1.35rem;
  color: var(--gp-land-ink);
}

.gp-plan-free p {
  margin: 0;
  color: var(--gp-land-muted);
  font-size: 0.95rem;
}

.gp-plan-free-action {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gp-plan-free-action .gp-plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gp-land-wine);
  font-family: var(--gp-land-display);
  margin: 0;
}

.gp-plan-free-action .btn-primary {
  background: var(--gp-land-rose) !important;
  border-color: var(--gp-land-rose) !important;
  border-radius: 10px;
  font-weight: 600;
  min-height: 44px;
  padding-inline: 1.2rem;
}

.gp-plan-free-action .btn-primary:hover {
  background: var(--gp-land-rose-hover) !important;
  border-color: var(--gp-land-rose-hover) !important;
}

.gp-plan-group {
  margin-bottom: 28px;
}

.gp-plan-group-title {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gp-land-ink);
  letter-spacing: -0.01em;
}

.gp-plan-grid--full {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gp-landing .gp-plan-card.featured {
  transform: none;
}

.gp-landing .gp-plan-card.featured:hover {
  transform: translateY(-2px);
}

/* Legacy .gp-nav kept harmless if referenced */
.gp-nav { display: contents; }

@media (max-width: 1100px) and (min-width: 901px) {
  .gp-nav-hide-sm {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .gp-nav-toggle {
    display: inline-flex;
  }
  .gp-site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #FFFCFA;
    border: 1px solid var(--gp-land-line);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 16px 36px rgba(40, 16, 16, 0.12);
  }
  .gp-site-nav.is-open {
    display: flex;
  }
  .gp-site-nav a {
    padding: 12px 14px;
    border-radius: 10px;
    white-space: normal;
  }
  .gp-site-nav a:hover {
    background: var(--gp-land-soft);
  }
  .gp-site-nav .gp-nav-cta {
    margin: 6px 0 2px;
    text-align: center;
  }
  .gp-plan-grid--full {
    grid-template-columns: 1fr;
  }
  .gp-plan-free {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hero — full bleed product composition */
.gp-hero {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 0;
  color: #fff;
  background:
    radial-gradient(ellipse 90% 70% at 8% 0%, rgba(255, 200, 190, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(40, 10, 10, 0.4), transparent 55%),
    linear-gradient(152deg, #C45C5C 0%, #8F3535 48%, #5C2222 100%);
  overflow: hidden;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: stretch;
}

.gp-hero-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(40px, 7vw, 72px) 0;
  position: relative;
  z-index: 1;
}

.gp-hero .gp-brand-hero {
  height: clamp(56px, 8vw, 72px);
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 22px;
  display: block;
  animation: gpRise 0.7s ease both;
}

.gp-hero h1 {
  font-family: var(--gp-land-display);
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 16px;
  max-width: 11.5ch;
  animation: gpRise 0.75s ease 0.06s both;
}

.gp-hero .gp-hero-lead {
  margin: 0 0 28px;
  max-width: 32rem;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  animation: gpRise 0.75s ease 0.12s both;
}

.gp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: gpRise 0.75s ease 0.18s both;
}

.gp-hero-cta .gp-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--gp-land-rose);
  font-weight: 700;
  border-radius: 12px;
  padding: 0.85rem 1.35rem;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gp-hero-cta .gp-btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(40, 10, 10, 0.2);
}

.gp-hero-cta .gp-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gp-hero-cta .gp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Product stage in hero */
.gp-hero-stage {
  position: relative;
  animation: gpRise 0.9s ease 0.15s both;
}

.gp-hero-stage-frame {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(6px);
}

.gp-mock-checkout {
  background: #FFFBFA;
  color: var(--gp-land-ink);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(40, 12, 12, 0.28);
}

.gp-mock-checkout .mock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: var(--gp-land-muted);
  font-weight: 600;
}

.gp-mock-checkout .mock-amount {
  font-family: var(--gp-land-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gp-land-ink);
  margin: 0 0 4px;
}

.gp-mock-checkout .mock-sub {
  margin: 0 0 16px;
  color: var(--gp-land-muted);
  font-size: 0.88rem;
}

.gp-mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--gp-land-line);
  border-radius: 12px;
  margin-bottom: 8px;
  background: #fff;
}

.gp-mock-row.is-active {
  border-color: #D4A0A0;
  background: var(--gp-land-soft);
}

.gp-mock-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--gp-land-line);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gp-land-wine);
  flex-shrink: 0;
}

.gp-mock-row strong {
  display: block;
  font-size: 0.92rem;
  color: var(--gp-land-ink);
}

.gp-mock-row span {
  font-size: 0.78rem;
  color: var(--gp-land-muted);
}

.gp-mock-pay {
  margin-top: 12px;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: #F7ECEC;
  color: #A84848;
  font-weight: 700;
  padding: 12px;
  font-size: 0.95rem;
}

.gp-mock-phone {
  position: absolute;
  right: -8px;
  bottom: -28px;
  width: min(46%, 180px);
  background: #1F1515;
  border-radius: 22px;
  padding: 10px 8px 12px;
  box-shadow: 0 16px 36px rgba(20, 8, 8, 0.35);
  border: 2px solid #3A2828;
  animation: gpFloat 5s ease-in-out infinite;
}

.gp-mock-phone .notch {
  width: 42%;
  height: 8px;
  background: #2C1E1E;
  border-radius: 0 0 8px 8px;
  margin: 0 auto 10px;
}

.gp-mock-sms {
  background: #2A1C1C;
  border-radius: 12px;
  padding: 10px;
  color: #F5EAEA;
  font-size: 0.68rem;
  line-height: 1.4;
}

.gp-mock-sms .sms-from {
  color: #E8A5A5;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gp-mock-sms .sms-ok {
  margin-top: 8px;
  color: #B8E0C0;
  font-weight: 600;
}

/* Sections */
.gp-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 88px) 0;
}

.gp-section h2 {
  font-family: var(--gp-land-display);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  color: var(--gp-land-ink);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gp-section > .gp-section-lead {
  color: var(--gp-land-muted);
  max-width: 36rem;
  margin: 0 0 36px;
  line-height: 1.55;
  font-size: 1.02rem;
}

.gp-band {
  background: var(--gp-land-surface);
  border-block: 1px solid var(--gp-land-line);
}

.gp-band .gp-section {
  padding-block: clamp(52px, 8vw, 80px);
}

/* Promise strip — one job: credibility */
.gp-promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gp-land-line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--gp-land-surface);
}

.gp-promise article {
  padding: 22px 24px;
  border-right: 1px solid var(--gp-land-line);
}

.gp-promise article:last-child {
  border-right: none;
}

.gp-promise h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--gp-land-ink);
  font-weight: 600;
}

.gp-promise p {
  margin: 0;
  color: var(--gp-land-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Feature split */
.gp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.gp-split-visual {
  background: linear-gradient(160deg, #9E3F3F, #742E2E);
  border-radius: 20px;
  min-height: 280px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.gp-split-visual::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 30%;
  height: 80%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.gp-split-visual h3 {
  position: relative;
  z-index: 1;
  font-family: var(--gp-land-display);
  font-size: 1.55rem;
  margin: 0 0 10px;
  max-width: 12ch;
}

.gp-split-visual p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  max-width: 28ch;
}

.gp-list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gp-list-check li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--gp-land-line);
  color: var(--gp-land-text);
  line-height: 1.45;
}

.gp-list-check li:last-child {
  border-bottom: none;
}

.gp-list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gp-land-rose);
}

/* Steps */
.gp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
  counter-reset: gpstep;
}

.gp-steps article {
  counter-increment: gpstep;
}

.gp-steps .gp-step-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gp-land-wine);
  margin-bottom: 10px;
}

.gp-steps article h3 {
  font-size: 1.12rem;
  color: var(--gp-land-ink);
  margin: 0 0 8px;
  font-weight: 600;
}

.gp-steps article p {
  margin: 0;
  color: var(--gp-land-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Kickers + mid bands */
.gp-kicker {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gp-land-wine);
}

.gp-pricing-band {
  background:
    linear-gradient(180deg, #FFF8F6 0%, #F4EFEE 100%);
  border-bottom: 1px solid var(--gp-land-line);
  position: relative;
}

.gp-pricing-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #C45C5C, #8F3535 50%, #C45C5C);
}

.gp-pricing-band .gp-section {
  padding-block: clamp(52px, 8vw, 84px);
}

.gp-plan-grid--spotlight {
  gap: 18px;
  align-items: stretch;
}

.gp-landing .gp-plan-card {
  border: 1px solid var(--gp-land-line);
  border-radius: 18px;
  padding: 26px 24px 22px;
  background: #fff;
  height: 100%;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gp-landing .gp-plan-card:hover {
  border-color: #D4A0A0;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(90, 30, 30, 0.08);
}

.gp-landing .gp-plan-card.featured {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, #C45C5C, #8F3535) border-box;
  border: 2px solid transparent;
  box-shadow: 0 18px 40px rgba(100, 35, 35, 0.12);
  transform: scale(1.02);
  z-index: 1;
}

.gp-landing .gp-plan-card.featured:hover {
  transform: scale(1.02) translateY(-2px);
}

.gp-landing .gp-plan-card h3 {
  font-size: 1.02rem;
  margin: 0 0 10px;
  color: var(--gp-land-ink);
  padding-right: 72px;
  line-height: 1.3;
  font-weight: 600;
}

.gp-landing .gp-plan-price {
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-weight: 700;
  color: var(--gp-land-wine);
  font-family: var(--gp-land-display);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1;
}

.gp-landing .gp-plan-period {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--gp-land-muted);
}

.gp-landing .gp-plan-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 20px;
  color: var(--gp-land-text);
  font-size: 0.92rem;
}

.gp-landing .gp-plan-features li {
  padding: 9px 0;
  border-bottom: 1px solid var(--gp-land-line);
}

.gp-landing .gp-plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gp-land-rose);
  color: #fff;
  padding: 5px 9px;
  border-radius: 6px;
}

.gp-landing .gp-plan-card .btn-primary {
  background: var(--gp-land-rose) !important;
  border-color: var(--gp-land-rose) !important;
  border-radius: 11px;
  font-weight: 600;
  min-height: 44px;
}

.gp-landing .gp-plan-card .btn-primary:hover {
  background: var(--gp-land-rose-hover) !important;
  border-color: var(--gp-land-rose-hover) !important;
}

.gp-landing .gp-plan-card.featured .btn-primary {
  background: var(--gp-land-rose) !important;
  border-color: var(--gp-land-rose) !important;
}

.gp-features-band {
  background: var(--gp-land-ink);
  color: #F5EAEA;
}

.gp-features-band .gp-kicker {
  color: #E8A5A5;
}

.gp-features-band h2 {
  color: #fff;
}

.gp-features-band .gp-section-lead {
  color: rgba(245, 234, 234, 0.72);
}

.gp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gp-feature-grid article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gp-feature-grid article:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 165, 165, 0.35);
}

.gp-feature-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}

.gp-feature-grid p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(245, 234, 234, 0.72);
}

.gp-how-band {
  border-bottom: 1px solid var(--gp-land-line);
}

.gp-how-band .gp-steps {
  margin-bottom: 28px;
}

.gp-how-band .gp-steps article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--gp-land-line);
  border-radius: 16px;
}

.gp-how-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gp-btn-wine,
.gp-btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 11px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.gp-btn-wine {
  background: var(--gp-land-rose);
  color: #fff !important;
}

.gp-btn-wine:hover {
  background: var(--gp-land-rose-hover);
}

.gp-btn-line {
  background: #fff;
  color: var(--gp-land-wine) !important;
  border: 1.5px solid var(--gp-land-line);
}

.gp-btn-line:hover {
  border-color: #D4A0A0;
}

.gp-pricing-more {
  margin-top: 22px;
  color: var(--gp-land-muted);
  font-size: 0.95rem;
}

.gp-pricing-more a {
  color: var(--gp-land-wine);
  font-weight: 600;
  text-decoration: none;
}

.gp-pricing-more a:hover {
  text-decoration: underline;
}

/* Pricing on landing — fewer, clearer */
.gp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

/* Closing CTA */
.gp-close {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(196, 92, 92, 0.18), transparent 50%),
    var(--gp-land-ink);
  color: #fff;
}

.gp-close .gp-section {
  text-align: center;
  padding-block: clamp(56px, 9vw, 84px);
}

.gp-close h2 {
  color: #fff;
  max-width: 16ch;
  margin-inline: auto;
}

.gp-close .gp-section-lead {
  color: rgba(255, 255, 255, 0.78);
  margin-inline: auto;
  margin-bottom: 28px;
}

.gp-close .gp-hero-cta {
  justify-content: center;
}

.gp-close .gp-btn-solid {
  background: #fff;
  color: var(--gp-land-ink);
}

.gp-close .gp-btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.gp-landing-foot {
  padding: 28px 20px 40px;
  text-align: center;
  color: var(--gp-land-muted);
  font-size: 0.9rem;
  background: var(--gp-land-bg);
}

.gp-landing-foot a {
  color: var(--gp-land-wine);
  text-decoration: none;
  font-weight: 500;
}

.gp-landing-foot a:hover {
  text-decoration: underline;
}

@keyframes gpRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes gpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.gp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.gp-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .gp-hero-grid,
  .gp-split,
  .gp-plan-grid,
  .gp-feature-grid {
    grid-template-columns: 1fr;
  }
  .gp-landing .gp-plan-card.featured {
    transform: none;
  }
  .gp-landing .gp-plan-card.featured:hover {
    transform: translateY(-2px);
  }
  .gp-hero {
    min-height: 0;
  }
  .gp-hero h1 {
    max-width: none;
  }
  .gp-hero-stage {
    max-width: 420px;
    margin: 8px auto 24px;
  }
  .gp-mock-phone {
    right: 8px;
    bottom: -18px;
  }
  .gp-promise {
    grid-template-columns: 1fr;
  }
  .gp-promise article {
    border-right: none;
    border-bottom: 1px solid var(--gp-land-line);
  }
  .gp-promise article:last-child {
    border-bottom: none;
  }
  .gp-steps {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 800px) {
  .gp-nav-links .gp-nav-cta {
    text-align: center;
  }
}
