:root {
  --bg: #f3f7f2;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --text: #162219;
  --muted: #597060;
  --line: #dfe7dc;
  --primary: #11d411;
  --primary-deep: #102210;
  --accent: #ff6b00;
  --shadow: 0 24px 60px rgba(14, 26, 19, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lexend", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(17, 212, 17, 0.08), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(255, 107, 0, 0.08), transparent 22%),
    linear-gradient(180deg, #f6faf5 0%, var(--bg) 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

.page-shell {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-primary {
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: rgba(17, 212, 17, 0.18);
}

.orb-accent {
  left: -90px;
  top: 480px;
  width: 280px;
  height: 280px;
  background: rgba(255, 107, 0, 0.14);
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 40px), var(--content-width));
  padding: 18px 0 8px;
  margin-top: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0;
}

.brand-mark {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text-image {
  width: auto;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}

.header-meta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover {
  color: var(--primary-deep);
  border-color: rgba(17, 212, 17, 0.45);
  transform: translateY(-1px);
}

.section {
  margin-top: 28px;
}

.hero.section {
  margin-top: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(17, 212, 17, 0.1);
  border: 1px solid rgba(17, 212, 17, 0.18);
  font-size: 0.88rem;
  font-weight: 700;
}

.eyebrow-on-dark {
  color: #cdeacc;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  font-weight: 800;
}

.lead,
.section-heading p,
.showcase-copy p,
.cta-band p,
.interest-copy p,
.proof-card p,
.feature-card p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.micro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 26px;
}

.micro-points {
  margin-top: 24px;
}

.is-hidden {
  display: none !important;
}

.micro-points span {
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 700;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #fff;
}

.header-login {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
  font-size: 0.98rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.button-full {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  border-radius: calc(var(--radius-xl) - 6px);
  background:
    linear-gradient(140deg, rgba(17, 212, 17, 0.08), transparent 42%),
    linear-gradient(330deg, rgba(255, 107, 0, 0.1), transparent 36%),
    #edf4eb;
}

.phone {
  position: absolute;
  border-radius: 34px;
  padding: 8px;
  background: var(--surface-strong);
  box-shadow: 0 24px 48px rgba(9, 17, 12, 0.16);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.phone-left {
  top: 62px;
  left: 18px;
  width: 220px;
  transform: rotate(-8deg);
}

.phone-center {
  top: 18px;
  right: 56px;
  width: 260px;
  transform: rotate(4deg);
}

.phone-right {
  right: 26px;
  bottom: 34px;
  width: 210px;
  transform: rotate(-6deg);
}

.floating-card {
  position: absolute;
  left: 30px;
  bottom: 34px;
  max-width: 240px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(9, 17, 12, 0.12);
}

.floating-card strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.3;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof,
.cards-grid,
.interest {
  display: grid;
  gap: 18px;
}

.interest-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
}

.interest-inline-copy {
  max-width: 620px;
}

.interest-inline-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.interest-inline-copy p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.interest-inline-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.interest-inline-form label {
  display: grid;
  gap: 0;
}

.interest-inline-form span {
  font-weight: 600;
}

.field-inline {
  position: relative;
}

.interest-inline-form input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
}

.interest-inline-form input:focus {
  outline: 2px solid rgba(17, 212, 17, 0.22);
  border-color: var(--primary);
}

.interest-inline-form .button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  white-space: nowrap;
}

.interest-inline-form .form-status {
  grid-column: 1 / -1;
  padding-left: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.proof-card,
.feature-card,
.interest-form,
.interest-note,
.showcase-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.proof-card,
.feature-card {
  padding: 18px 20px;
}

.proof-card span,
.feature-card .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.proof-card span {
  color: var(--primary-deep);
}

.proof-card strong,
.feature-card h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.feature-grid {
  display: grid;
  gap: 24px;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.showcase-copy h2,
.cta-band h2,
.interest-copy h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
}

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

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(17, 212, 17, 0.1);
  color: var(--primary-deep);
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1;
}

.feature-icon.accent {
  background: rgba(255, 107, 0, 0.12);
}

.showcase {
  display: grid;
  gap: 28px;
}

.showcase-copy {
  max-width: 920px;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.sideline-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.88fr);
  gap: 18px;
  align-items: stretch;
}

.showcase-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 18px;
  border-radius: 28px;
}

.sideline-frame {
  margin: 0;
  height: clamp(300px, 33vw, 430px);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.showcase-meta {
  margin-bottom: 14px;
}

.showcase-meta h3 {
  margin: 0 0 8px;
  color: var(--primary-deep);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.showcase-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.96rem;
}

.showcase-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.showcase-image-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(
    180deg,
    rgba(243, 247, 242, 0) 0%,
    rgba(243, 247, 242, 0.78) 62%,
    rgba(243, 247, 242, 0.98) 100%
  );
  pointer-events: none;
}

.showcase-frame img {
  width: 100%;
  aspect-ratio: 7 / 12;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 28px 36px rgba(14, 26, 19, 0.12);
}

.sideline-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.showcase-home {
  grid-column: auto;
  grid-row: auto;
}

.showcase-training {
  grid-column: auto;
  grid-row: auto;
  transform: none;
}

.showcase-match {
  grid-column: auto;
  grid-row: auto;
  transform: none;
}

.cta-band {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(17, 212, 17, 0.12), transparent 40%),
    linear-gradient(140deg, #123412, #0d230e);
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p:last-child {
  max-width: 64ch;
  color: #d4e5d3;
}

.interest {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.interest-note {
  margin-top: 24px;
  padding: 20px;
}

.interest-note strong {
  display: block;
  margin-bottom: 8px;
}

.interest-note p {
  margin: 0;
}

.interest-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.interest-form label {
  display: grid;
  gap: 8px;
}

.interest-form span {
  font-weight: 600;
}

.interest-form input,
.interest-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.interest-form input:focus,
.interest-form textarea:focus {
  outline: 2px solid rgba(17, 212, 17, 0.22);
  border-color: var(--primary);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status.success {
  color: #0b7b2d;
}

.form-status.error {
  color: #b13d10;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.footer-links a {
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--primary-deep);
}

.legal-page {
  min-height: 100vh;
}

.legal-page .page-shell {
  padding-bottom: 32px;
}

.legal-header {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 880px);
  margin: 0 auto;
  padding: 22px 0 10px;
}

.legal-header .brand-mark {
  width: 68px;
  height: 68px;
}

.legal-header .brand-text-image {
  height: 38px;
}

.legal-main {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 880px);
  margin: 0 auto;
}

.legal-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.legal-card h2 {
  margin: 28px 0 12px;
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.legal-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-card strong {
  color: var(--text);
}

.legal-meta {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-contact {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(243, 247, 242, 0.9);
}

.legal-contact a {
  color: var(--primary-deep);
}

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

  .hero-visual {
    min-height: 600px;
  }

  .interest-inline-form {
    grid-template-columns: 1fr 1fr auto;
  }

  .showcase-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sideline-gallery-grid {
    grid-template-columns: 1fr;
  }

  .sideline-frame {
    height: auto;
  }

  .sideline-frame-wide img {
    aspect-ratio: 3 / 2;
  }

  .sideline-frame-tall img {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 780px) {
  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 6px;
  }

  .header-meta {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .site-nav {
    order: 0;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.98rem;
    padding-top: 2px;
  }

  .brand-mark {
    width: 68px;
    height: 68px;
  }

  .brand-text-image {
    height: 38px;
  }

  .header-login {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 13px;
    font-size: 0.88rem;
  }

  .hero,
  .interest-inline,
  .interest,
  .cta-band {
    padding: 24px;
  }

  .interest-inline-form {
    grid-template-columns: 1fr;
  }

  .showcase-gallery {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .phone-left {
    width: 170px;
    top: 48px;
    left: 6px;
  }

  .phone-center {
    width: 210px;
    top: 12px;
    right: 28px;
  }

  .phone-right {
    width: 165px;
    right: 14px;
    bottom: 18px;
  }

  .floating-card {
    left: 14px;
    right: 14px;
    bottom: 18px;
    max-width: none;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
  }

  .legal-card {
    padding: 24px;
  }

  .legal-header .brand-mark {
    width: 62px;
    height: 62px;
  }

  .legal-header .brand-text-image {
    height: 34px;
  }
}
