:root {
  --green: #8dcd00;
  --green-dark: #79b400;
  --green-bg: #f5f9ed;
  --green-card: #e5f2c4;
  --orange-1: #ffb639;
  --orange-2: #ff9b49;
  --cream: #fef8ed;
  --dark: #151515;
  --text: #181818;
  --gray: #8b8f86;
  --header-h: 74px;
  --error: #fa6b7c;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font-family: 'Noto Sans JP', 'Hiragino Maru Gothic ProN', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.wrap {
  margin: 0 auto;
  background: #fff;
  overflow-x: clip;
}
[id] {
  scroll-margin-top: 94px;
}

/* ---------- header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  height: var(--header-h);
  box-shadow: 0 7px 10px 0 rgba(53, 53, 53, 0.1);
}
.header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.header-mid {
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
}
.logo {
  height: auto;
  width: 91px;
}
.header-logo-text {
  width: auto;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
  white-space: nowrap;
}
.header-tag {
  font-size: 10px;
  color: #a3a3a3;
  line-height: 1.4;
  font-weight: 500;
  margin-left: 20px;
}
.nav-desktop {
  display: none;
}

/* ---------- hamburger toggle ---------- */
.menu-toggle {
  position: relative;
  flex-shrink: 0;
  width: 74px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle .bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition:
    top 0.15s 0.15s,
    transform 0.15s,
    opacity 0.15s,
    background-color 0.25s;
}
.menu-toggle .bar-top {
  margin-top: -10px;
}
.menu-toggle .bar-middle {
  margin-top: 0;
}
.menu-toggle .bar-bottom {
  margin-top: 10px;
}

body.nav-open .menu-toggle {
  background: var(--green);
}
body.nav-open .menu-toggle .bar {
  margin-top: 0;
  background: #fff;
  transition:
    top 0.15s,
    transform 0.15s 0.15s,
    opacity 0.15s,
    background-color 0.25s;
}
body.nav-open .menu-toggle .bar-top {
  transform: translate(-50%, -50%) rotate(45deg);
}
body.nav-open .menu-toggle .bar-bottom {
  transform: translate(-50%, -50%) rotate(-45deg);
}
body.nav-open .menu-toggle .bar-middle {
  opacity: 0;
}

/* ---------- nav panel ---------- */
.nav-panel {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 50%;
  bottom: 0;
  width: 100%;
  transform: translateX(-50%);
  z-index: 40;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav-panel.is-open {
  display: block;
}
.nav-panel.is-open.is-visible {
  opacity: 1;
}

.nav-panel-inner {
  height: calc(100vh - 72px);
  margin: 0;
  background: #fff;
  padding: 21px 20px 28px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-primary {
  list-style: none;
}
.nav-primary li {
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  padding: 17px 0;
}
.nav-primary li a {
  text-decoration: none;
  color: inherit;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-primary li .dash {
  display: none;
  width: 20px;
  height: 3px;
  background: var(--green);
}
.nav-primary li.is-current .dash {
  display: inline-block;
}

.nav-secondary {
  list-style: none;
  margin-top: 27px;
}
.nav-secondary li {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
}
.nav-secondary li a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta {
  margin-top: 45px;
}
.nav-cta .cta-lead {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
.nav-cta .btn-cta {
  margin-top: 9px;
  width: 335px;
}
.nav-cta .release-note {
  margin-top: 9px;
}

body.nav-open {
  overflow: hidden;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-panel {
  position: relative;
  z-index: 1;
  width: 92.3077vw;
  margin: 0 auto;
  padding: 0 0 28px;
}
.hero-grid {
  position: relative;
}
.hero-bg-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 71.7949vw;
  height: 100%;
  background: var(--green-bg);
  border-radius: 0 0 12px 12px;
  z-index: 0;
}
.hero-copy {
  padding: 35px 0 25px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.hero h1 .g {
  color: var(--green);
}
.hero-desc {
  margin-top: 20px;
  font-size: 12px;
  color: #333;
  font-weight: 400;
}
.hero-desc p + p {
  margin-top: 14px;
}
.hero-media {
  display: none;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.badge {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  padding: 0px 20px 1px;
  border-radius: 2px;
  white-space: nowrap;
}
.badge-row .line {
  flex: 1;
  height: 1px;
  background: var(--green);
}
.service-name {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}
.service-logo-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 0px;
  flex-wrap: wrap;
}
.service-logo {
  height: auto;
  width: 135px;
}
.powered-by {
  font-size: 10px;
  color: #a3a3a3;
  font-weight: 500;
  vertical-align: middle;
  position: relative;
  top: -8px;
}

.cta-lead {
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px auto 0;
  height: 63px;
  padding: 0 20px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--orange-1), var(--orange-2), var(--orange-1));
  background-size: 200% 100%;
  background-position: left center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 24px -8px rgba(255, 150, 50, 0.45);
  border: none;
  cursor: pointer;
  width: 100%;
  position: relative;
  text-decoration: none;
  width: 287px;
  transition: background-position 0.3s ease;
}
.btn-cta:hover {
  background-position: right center;
  box-shadow: 0 10px 24px -8px rgba(255, 150, 50, 0.8);
}
.release-note {
  margin-top: 14px;
  text-align: center;
  color: var(--orange-2);
}
.release-note .rn-year {
  font-size: 14px;
  font-weight: 400;
}
.release-note .rn-month {
  font-size: 16px;
  font-weight: 500;
}
.release-note .rn-label {
  font-size: 14px;
  font-weight: 500;
}
.release-note .rn-note {
  font-size: 12px;
  font-weight: 500;
}
.icon-chev {
  width: 6px;
  height: auto;
  flex-shrink: 0;
  margin-left: 5px;
}
.icon-chev-btn {
  width: 7px;
  height: auto;
  flex-shrink: 0;
  margin-left: 5px;
  position: absolute;
  right: 22px;
  transition: transform 0.3s ease;
}
.btn-cta:hover .icon-chev-btn {
  transform: translateX(10px);
}
.hero-cta .btn-cta {
  height: 52px;
  font-size: 16px;
}

/* ---------- section titles ---------- */
.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
.section-sub {
  text-align: center;
  color: var(--green);
  font-weight: 500;
  margin-top: 4px;
  font-size: 14px;
}

/* ---------- service overview ---------- */
.overview {
  background: var(--green-bg);
  padding: 30px 0 40px;
}
.overview-grid {
  margin: 0 auto;
  width: 89.7436vw;
}
.overview .photo {
  border-radius: 8px;
  overflow: hidden;
  margin: 28px 0 32px;
  box-shadow: 6px 6px 15px 0 rgba(0, 0, 0, 0.15);
  height: 191px;
}
.overview .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overview h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
.overview .body-text p {
  font-size: 14px;
  color: #333;
  margin-bottom: 18px;
}

/* ---------- solution panel (white card) ---------- */
.solution-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  margin: 50px auto 0;
  padding: 30px 20px 40px;
  width: 89.7436vw;
}
.problem {
  background: var(--green-card);
  border-radius: 8px;
  padding: 15px 18px;
  margin-top: 20px;
}
.problem:first-of-type {
  margin-top: 26px;
}
.icon-box {
  background: #fff;
  border-radius: 6px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-box svg,
.icon-box img {
  width: 34px;
  height: 34px;
}
.icon-box img[src$='icon-solution-1.svg'] {
  width: 75px;
  height: auto;
}
.icon-box img[src$='icon-solution-2.svg'] {
  width: 40px;
  height: auto;
}
.icon-box img[src$='icon-solution-3.svg'] {
  width: 40px;
  height: auto;
}
.icon-box img[src$='icon-solution-4.svg'] {
  width: 35px;
  height: auto;
}
.icon-box img[src$='icon-solution-5.svg'] {
  width: 25px;
  height: auto;
}
.icon-box img[src$='icon-solution-6.svg'] {
  width: 40px;
  height: auto;
}
.glyph-icon {
  color: var(--green);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 2px;
  font-family: monospace;
}
.font-inter {
  font-family: 'Inter', sans-serif;
}
.nav-desktop-list a.font-inter,
.nav-primary a.font-inter {
  font-weight: 500;
}
.brand-logo {
  height: auto;
  width: 152px;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.07));
}
.problem p {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.solution-cta {
  box-shadow: 4px 4px 20px rgba(255, 150, 50, 0.45);
  margin-top: 28px;
  border-radius: 12px;
  padding: 26px 30px 28px;
  background: linear-gradient(135deg, var(--orange-1) 13%, var(--orange-2));
  color: #fff;
}
.solution-cta .kicker {
  font-size: 12px;
  font-weight: 600;
}
.solution-cta .brand {
  font-size: 27px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: -10px;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.07);
}
.solution-cta .brand .brand-suffix {
  font-size: 24px;
}
.solution-cta p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 14px;
}

/* ---------- features section ---------- */
.features {
  background: #fff;
  padding: 40px 24px 40px;
}
.features-inner {
  position: relative;
  padding-bottom: 40px;
}
.features-bg-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 71.7949vw;
  height: 100%;
  background: var(--green-bg);
  border-radius: 12px;
  z-index: 0;
}
.features-head {
  position: relative;
  z-index: 1;
  padding: 30px 20px 0;
  text-align: center;
}
.pill-tag {
  display: inline-block;
  margin: 0 auto;
  color: var(--green);
  font-weight: 500;
  font-size: 14px;
  padding: 0;
}
.features-intro {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 89.7436vw;
}
.gradient-banner {
  border-radius: 8px;
  overflow: hidden;
  margin: 28px 0 22px;
  box-shadow: 6px 6px 15px 0 rgba(0, 0, 0, 0.15);
  width: 89.7436vw;
  height: 100px;
}
.gradient-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-copy h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
.ai-copy p {
  font-size: 14px;
  color: #333;
  margin-bottom: 40px;
}

.feature-grid {
  position: relative;
  z-index: 1;
}
.feature-card {
  background: var(--green-card);
  border-radius: 8px;
  padding: 26px 18px 24px;
  margin: 22px auto 0;
  text-align: center;
  width: 89.7436vw;
}
.feature-card h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}
.feature-card p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
  text-align: left;
}
.feature-card .icon-box {
  gap: 14px;
  height: 76px;
}
.feature-card .icon-box svg,
.feature-card .icon-box img {
  width: 32px;
  height: 32px;
}
.feature-card .icon-box img[src$='icon-features-1.svg'] {
  width: 102px;
  height: auto;
}
.feature-card .icon-box img[src$='icon-features-2.svg'] {
  width: 117px;
  height: auto;
}
.feature-card .icon-box img[src$='icon-features-3.svg'] {
  width: 103px;
  height: auto;
}
.feature-card .icon-box img[src$='icon-features-4.svg'] {
  width: 118px;
  height: auto;
}
.feature-card .icon-box img[src$='icon-features-5.svg'] {
  width: 105px;
  height: auto;
}
.feature-card .icon-box img[src$='icon-features-6.svg'] {
  width: 94px;
  height: auto;
}

/* ---------- signup form ---------- */
.signup {
  background: var(--cream);
  padding: 35px 0 60px;
}
.signup .section-sub {
  color: var(--orange-1);
}
.signup-lead {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin-top: 35px;
}
.form-card {
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 28px 20px;
  margin: 26px auto 0;
  width: 89.7436vw;
}
.form-errors {
  display: none;
  text-align: center;
  margin-bottom: 20px;
}
.form-errors.error {
  display: block;
}
.form-error-line {
  display: none;
  color: var(--error);
  font-size: 16px;
  font-weight: 600;
}
.form-error-line.error {
  display: block;
}
.field {
  margin-top: 20px;
}
.field:first-child {
  margin-top: 0;
}
.field label {
  display: block;
  font-weight: 400;
  font-size: 14px;
}
.field .hint {
  color: var(--orange-1);
  font-size: 12px;
  font-weight: 400;
  margin-top: 0;
}
.field .field-error {
  display: none;
  color: var(--error);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.field.error .field-error {
  display: block;
}
.field input {
  width: 100%;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #f2f2f0;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
}
.field.error input {
  border-color: var(--error);
}
.field input::placeholder {
  color: #b3b3ae;
}

.consent {
  text-align: center;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
}
.consent a {
  color: var(--orange-1);
  text-decoration: underline;
  font-weight: 400;
}
.signup .btn-cta {
  margin-top: 18px;
  height: 65px;
}

/* ---------- footer ---------- */
footer {
  background: var(--dark);
  color: #fff;
  padding: 36px 24px 30px;
  text-align: center;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
}
.footer-links li:first-child {
  margin-top: 0;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
}
.copyright {
  margin-top: 28px;
  font-size: 10px;
  color: #9a9a9a;
}

/* ==========================================================================
     PC BREAKPOINT — placeholder value, swap later
     This is a temporary breakpoint chosen for development. When the real
     value is decided, update the single "1024px" below (search for
     "PC-BP" — it appears once, right on the @media line).
     ========================================================================== */
/* PC-BP */
@media (min-width: 1024px) {
  /* ---- header ---- */
  header {
    padding: 0 48px;
    height: 70px;
    min-height: 70px;
  }
  [id] {
    scroll-margin-top: 104px;
  }
  .header-mid {
    padding: 22px 0;
  }
  .menu-toggle {
    display: none;
  }
  .nav-panel {
    display: none !important;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .nav-desktop-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav-desktop-list li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    padding-bottom: 6px;
    border-bottom: 3px solid transparent;
    transition:
      border-bottom-color 0.25s ease,
      color 0.25s ease;
  }
  .nav-desktop-list li.is-current a {
    border-bottom-color: var(--green);
  }
  .nav-desktop-list li a:hover {
    border-bottom-color: var(--green);
  }
  .nav-desktop-cta {
    font-size: 14px;
    width: auto;
    margin-top: 0;
    padding: 0 40px 0 26px;
    box-shadow: none;
    height: 40px;
  }

  /* ---- hero ---- */
  .hero {
    width: auto;
    padding: 0 48px 60px;
  }
  .hero-panel {
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    border-radius: 20px;
  }
  .hero-bg-accent {
    width: 91.9118%;
    max-width: 1000px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .hero-copy {
    padding-bottom: 120px;
    width: 580px;
  }
  .hero h1 {
    font-size: 52px;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .hero-desc {
    font-size: 16px;
  }
  .br-pc-hide {
    display: none;
  }
  .hero-media {
    height: 445px;
    display: block;
    position: relative;
    z-index: 1;
    align-self: start;
    margin-top: 50px;
  }
  .hero-media img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 15px 15px 40px 0 rgba(0, 0, 0, 0.15);
  }
  .hero-cta {
    margin-top: 40px;
  }
  .brand-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 32px;
    margin-top: 30px;
  }
  .badge-row {
    grid-column: 1;
    grid-row: 1;
    margin-top: -20px;
  }
  .badge {
    padding: 0px 30px 1px;
  }
  .service-name {
    grid-column: 1;
    grid-row: 2;
    margin-top: -35px;
    font-size: 14px;
    line-height: 1;
  }
  .service-logo-row {
    display: contents;
  }
  .service-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    height: auto;
    width: 195px;
  }
  .powered-by {
    font-size: 12px;
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    text-align: right;
    margin-top: 5px;
    width: 195px;
  }
  .hero-cta {
    margin-top: -100px;
  }
  .cta-lead {
    font-size: 16px;
    font-weight: 400;
    position: relative;
  }
  .hero-cta .btn-cta {
    font-size: 20px;
    width: 280px;
    min-width: 280px;
    margin-inline: auto;
    height: 62px;
  }

  /* ---- service overview ---- */
  .overview {
    padding: 40px 48px 60px;
  }
  .overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 57px;
    align-items: start;
    margin-top: 50px;
    width: auto;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .overview .photo {
    grid-column: 1;
    grid-row: 1/3;
    margin: 0;
    height: 311px;
    width: auto;
    max-width: 570px;
    justify-self: start;
  }
  .overview .photo img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 15px 15px 40px 0 rgba(0, 0, 0, 0.15);
  }
  .overview h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 16px;
    font-size: 24px;
  }
  .overview .body-text {
    grid-column: 2;
    grid-row: 1;
  }

  /* ---- solution ---- */
  .solution-card {
    padding: 40px 60px 60px;
    margin: 0 auto;
    width: auto;
    max-width: 1200px;
  }
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    gap: 30px;
  }
  .problem {
    margin-top: 0 !important;
  }
  .problem p {
    font-size: 16px;
  }
  .solution-cta {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 30px 50px;
  }
  .solution-cta-brand {
    flex-shrink: 0;
  }
  .section-title {
    font-size: 36px;
  }
  .section-sub {
    font-size: 20px;
  }
  .solution-cta-text {
    flex: 1;
  }
  .solution-cta-text p:first-child {
    margin-top: 0;
  }
  .icon-box {
    height: 90px;
  }
  .feature-card .icon-box {
    height: 120px;
  }
  .solution-cta p {
    font-size: 16px;
    margin-top: 0;
  }

  /* ---- features ---- */
  .features {
    padding: 60px 48px;
  }
  .features-inner {
    padding-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .features-bg-accent {
    width: 83.3333%;
    max-width: 1000px;
  }
  .features-head {
    padding: 40px 20px 50px;
  }
  .features-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    margin: 0 0 60px;
    width: auto;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .pill-tag {
    font-size: 20px;
    margin-top: 5px;
  }
  .gradient-banner {
    grid-column: 1;
    grid-row: 1/3;
    margin: 0;
    height: 122px;
    width: 270px;
  }
  .ai-copy {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
  }
  .ai-copy h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .ai-copy p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
  }
  .feature-card {
    margin-top: 0;
    padding: 20px 30px 24px;
    width: auto;
  }
  .feature-card h5 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .feature-card p {
    font-size: 16px;
  }

  /* ---- signup ---- */
  .signup {
    padding: 40px 48px 60px;
  }
  .signup-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .signup-lead {
    font-size: 16px;
    margin-top: 40px;
  }
  .form-card {
    width: auto;
    max-width: 1200px;
    margin-inline: auto;
    padding: 48px;
    margin: 35px auto 0;
  }
  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
  }
  .field-row .field {
    margin-top: 0;
  }
  .field-label-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .signup .btn-cta {
    width: auto;
    min-width: 340px;
    margin-inline: auto;
    height: 77px;
    font-size: 24px;
  }
  .consent {
    font-size: 16px;
    margin-top: 55px;
  }
  .field input {
    padding: 16px 16px;
    font-size: 16px;
  }

  /* ---- footer ---- */
  footer {
    padding: 0;
    text-align: left;
  }
  .footer-inner {
    height: 169px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-links {
    display: flex;
    gap: 32px;
  }
  .footer-links li {
    margin-top: 0;
    font-size: 12px;
    line-height: 1;
  }
  .copyright {
    margin-top: 0;
  }
}

/* Registration runtime status is rendered by browser.ts, not by the supplied static form. */
.field-error:not(:empty) {
  display: block;
}

.field input[aria-invalid='true'] {
  border-color: var(--error);
}

#consent-error {
  color: var(--error);
  font-size: 16px;
  font-weight: 600;
}

#registration-status:not(:empty) {
  margin-bottom: 20px;
  text-align: center;
  color: var(--error);
  font-size: 16px;
  font-weight: 600;
}

.signup .btn-cta:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
