:root {
  --bg: #ffffff;
  --surface: #f7faf7;
  --surface-strong: #eef6ef;
  --text: #151b17;
  --muted: #647068;
  --border: #dfe8e1;
  --green: #60a06f;
  --green-dark: #367d49;
  --green-soft: #eaf5ec;
  --dark: #101612;
  --shadow: 0 24px 60px rgba(21, 35, 25, 0.08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

button,
input {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-sm {
  padding: 32px 0;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(223, 232, 225, 0.75);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 32px;
  display: inline-block;
}

.brand-mark-top,
.brand-mark-bottom {
  position: absolute;
  left: 0;
  width: 12px;
  border-radius: 999px;
  background: var(--green);
}

.brand-mark-top {
  top: 0;
  height: 25px;
}

.brand-mark-bottom {
  bottom: 0;
  width: 28px;
  height: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 0.95rem;
}

.main-nav a {
  color: #303933;
}

.main-nav a:hover {
  color: var(--green-dark);
}

.swiss-badge,
.eyebrow,
.status-pill,
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.swiss-badge {
  padding: 9px 14px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  background: #fff;
}

.hero {
  overflow: hidden;
  padding-top: 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.04fr);
  align-items: center;
  gap: 58px;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow,
.status-pill {
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  color: var(--green-dark);
  background: var(--green-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill {
  color: #4b574f;
  background: #f4f6f4;
  border: 1px solid var(--border);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(96, 160, 111, 0.12);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3rem, 5.7vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: var(--green-dark);
}

.hero-intro {
  max-width: 650px;
  margin: 28px 0 22px;
  font-size: 1.12rem;
  color: #49534c;
}

.hero-points {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 31px;
  font-weight: 650;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 0.75rem;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 590px;
}

input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: 14px 15px;
  outline: none;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(96, 160, 111, 0.12);
}

button,
.secondary-button {
  border: 0;
  border-radius: 12px;
  padding: 14px 19px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover,
.secondary-button:hover {
  background: #2d6d3e;
  transform: translateY(-1px);
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.visual-aura {
  position: absolute;
  inset: 45px 25px 60px;
  border-radius: 48% 52% 42% 58%;
  background:
    radial-gradient(circle at 50% 42%, rgba(96, 160, 111, 0.18), transparent 58%),
    var(--surface);
}

.phone {
  position: absolute;
  margin: 0;
  width: 230px;
  aspect-ratio: 0.49;
  padding: 10px;
  border-radius: 42px;
  background: #0e110f;
  border: 1px solid #262c28;
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 38%;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #050605;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 33px;
  background: #121713;
}

.placeholder-screen {
  display: grid;
  place-content: center;
  text-align: center;
  color: #8cad93;
  border: 1px dashed rgba(122, 181, 135, 0.35);
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    #111612;
  background-size: 22px 22px;
}

.placeholder-screen span {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.placeholder-screen small {
  margin-top: 8px;
  color: #69766d;
}

.phone-left {
  left: 4%;
  top: 115px;
  transform: rotate(-7deg) scale(0.9);
}

.phone-main {
  z-index: 3;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
}

.phone-right {
  right: 3%;
  top: 105px;
  transform: rotate(7deg) scale(0.9);
}

.visual-caption {
  position: absolute;
  right: 2%;
  bottom: 28px;
  margin: 0;
  color: var(--green-dark);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 1rem;
  transform: rotate(-3deg);
}

.trust-strip {
  background: linear-gradient(90deg, #fbfdfb, var(--green-soft), #fbfdfb);
  border-block: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 30px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 800;
}

.trust-item h2 {
  margin: 0 0 3px;
  font-size: 1rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 42px;
}

.centered {
  text-align: center;
  margin-inline: auto;
}

.section-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading h2,
.content-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.section-heading p {
  color: var(--muted);
}

.founders {
  background: #fff;
}

.founders-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: stretch;
}

.founder-program,
.content-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.founder-program {
  padding: 30px;
  background: var(--surface);
}

.founder-program h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.founder-program p {
  color: var(--muted);
}

.founder-program ul {
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.founder-program li {
  position: relative;
  padding-left: 26px;
}

.founder-program li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.text-link {
  color: var(--green-dark);
  font-weight: 800;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.coach-card {
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}

.coach-avatar {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    background: #f3f3f3;
}

.coach-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-badge {
  padding: 5px 9px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.68rem;
  font-weight: 800;
}

.coach-card h3 {
  margin: 12px 0 1px;
  font-size: 1rem;
}

.coach-card p,
.coach-location {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.coach-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.coach-links a {
  min-width: 34px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 800;
}

.center-action {
  margin-top: 28px;
  text-align: center;
}

.secondary-button {
  display: inline-flex;
  background: transparent;
  color: var(--green-dark);
  border: 1px solid var(--green);
}

.secondary-button:hover {
  color: #fff;
}

.project {
  background: var(--surface);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.1fr;
  gap: 20px;
}

.content-card {
  padding: 32px;
}

.content-card h2 {
  font-size: 1.85rem;
}

.content-card > p {
  color: var(--muted);
}

.founder-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.mini-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-weight: 800;
}

.founder-signature span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.update-list {
  margin: 24px 0;
  display: grid;
  gap: 18px;
}

.update-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
}

.update-status {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.update-status.done {
  background: var(--green);
}

.update-status.progress {
  background: #e8a52f;
}

.update-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.signup-form {
  display: grid;
  gap: 15px;
  margin-top: 22px;
}

.signup-form label:not(.checkbox-row) {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 750;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: #364139;
  font-size: 0.9rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 5px;
}

.assurance {
  border-top: 1px solid var(--border);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.assurance-grid div {
  display: grid;
  gap: 5px;
}

.assurance-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 62px 0 24px;
  color: #d8e2da;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 36px;
}

.footer-brand {
  color: #fff;
}

.footer-grid p,
.footer-grid a {
  color: #98a59c;
  font-size: 0.9rem;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #283129;
  color: #7f8d83;
  font-size: 0.85rem;
}

@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

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

  .founders-layout {
    grid-template-columns: 1fr;
  }

  .coach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card {
    grid-column: 1 / -1;
  }

  .trust-grid,
  .assurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .swiss-badge {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

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

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

  .phone {
    width: 165px;
    border-radius: 31px;
  }

  .phone-screen {
    border-radius: 24px;
  }

  .phone-left {
    left: -4%;
    top: 92px;
  }

  .phone-main {
    top: 25px;
  }

  .phone-right {
    right: -4%;
    top: 88px;
  }

  .visual-caption {
    bottom: 0;
    font-size: 0.82rem;
  }

  .trust-grid,
  .assurance-grid,
  .content-grid,
  .coach-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-inline: 8px;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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