:root {
  --bg: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #202124;
  --muted: #5f6368;
  --line: rgba(32, 33, 36, 0.1);
  --blue: #4285f4;
  --red: #ea4335;
  --yellow: #fbbc05;
  --green: #34a853;
  --shadow: 0 30px 80px rgba(66, 133, 244, 0.12);
  --danger: #c5221f;
  --success: #188038;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(66, 133, 244, 0.22), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(251, 188, 5, 0.18), transparent 22%),
    radial-gradient(circle at 75% 85%, rgba(52, 168, 83, 0.16), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  z-index: 0;
}

body::before {
  width: 18rem;
  height: 18rem;
  top: 7%;
  right: 3%;
  background: rgba(234, 67, 53, 0.09);
}

body::after {
  width: 22rem;
  height: 22rem;
  bottom: -5rem;
  left: -4rem;
  background: rgba(66, 133, 244, 0.1);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: 96%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 24px 0;
}

.hero-grid {
  min-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 470px);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.form-panel,
.insight-strip article {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-copy {
  border-radius: 40px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.brand-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.blue {
  background: var(--blue);
}

.red {
  background: var(--red);
}

.yellow {
  background: var(--yellow);
}

.green {
  background: var(--green);
}

.eyebrow,
.mini-tag,
.trust-label,
.strip-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow,
.mini-tag {
  color: var(--blue);
}

h1,
h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 1;
}

.hero-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 12px;
  align-items: end;
}

.hero-title-copy {
  min-width: 0;
}

.hero-image-slot {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.12));
}

.google-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.g-blue {
  color: var(--blue);
}

.g-red {
  color: var(--red);
}

.g-yellow {
  color: var(--yellow);
}

.g-green {
  color: var(--green);
}

.yield-banner {
  display: inline-grid;
  gap: 4px;
  align-self: flex-start;
  margin: 8px 0 18px;
  padding: 16px 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(66, 133, 244, 0.12) 0%, rgba(52, 168, 83, 0.14) 100%),
    var(--surface-strong);
  border: 1px solid rgba(66, 133, 244, 0.18);
  box-shadow: 0 18px 44px rgba(66, 133, 244, 0.14);
}

.yield-label,
.yield-note {
  display: block;
}

.yield-label {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.yield-banner strong {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--text);
}

.yield-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.lead {
  max-width: 46ch;
  margin: 22px 0 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(66, 133, 244, 0.08), rgba(251, 188, 5, 0.08));
  border: 1px solid rgba(66, 133, 244, 0.12);
}

.cta-copy p {
  margin: 0;
}

.cta-kicker {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.cta-text {
  margin-top: 6px;
  color: var(--text);
  font-weight: 500;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  transform: translateY(-2px);
  background: #1a1a1a;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.24);
}

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

.feature-band article,
.trust-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.feature-band article {
  padding: 22px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-band article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(66, 133, 244, 0.1);
}

.feature-band article:first-child {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.12), rgba(66, 133, 244, 0.1));
  border-color: rgba(52, 168, 83, 0.22);
}

.feature-band article:first-child strong {
  color: var(--green);
  font-size: 1.4rem;
}

.feature-band strong,
.trust-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-band span,
.panel-head p,
.form-note,
.insight-strip article p {
  color: var(--muted);
  line-height: 1.6;
}

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

.trust-card {
  padding: 18px;
}

.trust-label,
.strip-title {
  color: var(--green);
  margin: 0 0 8px;
}

.trust-value {
  margin: 0;
}

.form-panel {
  border-radius: 34px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.96));
}

.form-panel-mobile {
  display: none;
}

.panel-head {
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  margin: 6px 0 14px;
}

form {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.93rem;
  font-weight: 700;
}

input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input::placeholder {
  color: #9aa0a6;
}

input:focus {
  border-color: rgba(66, 133, 244, 0.65);
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.12);
  transform: translateY(-1px);
}

button {
  padding: 16px 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

button:hover,
button:focus-visible {
  transform: translateY(-2px);
  background: #1a1a1a;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.26);
}

.btn-main {
  width: 100%;
}

.validation-message {
  display: none;
  margin: 0;
  padding: 16px 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  background: #6f6f6f;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.form-note,
.success-message {
  font-size: 0.9rem;
}

.success-message {
  min-height: 1.2rem;
  margin: 0;
  color: var(--success);
  font-weight: 700;
}

.site-footer {
  width: 96%;
  max-width: 1680px;
  margin: 0 auto 32px;
  padding: 0 0 32px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--text);
  font-weight: 700;
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.insight-strip article {
  border-radius: 24px;
  padding: 22px;
}

.insight-strip article p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .form-panel {
    padding: 28px;
  }

  h1 {
    max-width: 14ch;
  }

  .cta-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-link {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: 96%;
    padding: 14px 0;
  }

  .hero-grid {
    min-height: auto;
    gap: 14px;
  }

  .hero-copy {
    border-radius: 28px;
    padding: 22px;
  }

  .form-panel {
    border-radius: 28px;
    padding: 22px;
  }

  .feature-band,
  .trust-panel,
  .insight-strip,
  .field-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .google-word {
    display: inline-flex;
    flex-wrap: nowrap;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-image-slot {
    display: none;
  }

  .hero-copy > .brand-row {
    order: 1;
  }

  .hero-copy > .eyebrow {
    order: 2;
  }

  .hero-copy > .hero-title-row {
    order: 3;
  }

  .hero-copy > .lead {
    order: 4;
  }

  .hero-copy > .cta-inline {
    order: 5;
  }

  .hero-copy > .feature-band {
    order: 6;
  }

  .hero-copy > .trust-panel {
    order: 7;
  }

  .cta-inline {
    margin-bottom: 18px;
  }
}
