:root {
  --navy: #061743;
  --green: #058d49;
  --orange: #ff6b13;
  --blue: #0a6ddb;
  --ink: #071334;
  --muted: #4e5872;
  --line: #e2e8f0;
  --soft: #f7fafc;
  --card: #ffffff;
  --shadow: 0 20px 58px rgba(6, 23, 67, 0.10);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section {
  padding: 74px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 260px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transition: right .2s ease;
}

.nav-links a:hover::after {
  right: 0;
}

.nav-cta,
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(6,23,67,.18);
}

.btn svg,
.email-link svg,
.site-footer svg {
  width: 22px;
  height: 22px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.hero {
  padding-top: 78px;
  background:
    radial-gradient(circle at 80% 16%, rgba(10,109,219,.08), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fff 82%, var(--soft) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -2px;
  max-width: 650px;
}

h1 span {
  color: var(--green);
}

.vision-line {
  margin: 26px 0 0;
  color: #3f4860;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
  font-weight: 500;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 600;
  font-size: 18px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-photo {
  width: min(100%, 620px);
  aspect-ratio: 1.14 / 1;
  border-radius: 48% 52% 45% 55% / 45% 46% 54% 55%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 10px solid transparent;
  border-left-color: var(--green);
  border-bottom-color: var(--green);
  border-top-color: var(--orange);
  border-radius: inherit;
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 94px;
  padding: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(6,23,67,.14);
}

.dots {
  position: absolute;
  width: 112px;
  height: 112px;
  background-image: radial-gradient(var(--blue) 2.3px, transparent 2.3px);
  background-size: 18px 18px;
  opacity: .28;
}

.dots-one {
  top: 40px;
  right: 76px;
}

.dots-two {
  left: 12px;
  bottom: 24px;
  opacity: .16;
}

.approach {
  border-top: 1px solid var(--line);
  background: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
}

.section-heading span,
.experience-title span {
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  margin: 18px auto 0;
}

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

.pillar,
.rhythm-grid article {
  text-align: center;
  padding: 16px 28px;
  border-right: 1px solid var(--line);
}

.pillar:last-child,
.rhythm-grid article:last-child {
  border-right: 0;
}

.round-icon,
.rhythm-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.round-icon svg,
.rhythm-icon svg {
  width: 54px;
  height: 54px;
}

.think .round-icon,
.rhythm-icon.green {
  color: var(--green);
  border: 3px solid var(--green);
  background: rgba(5,141,73,.08);
}

.express .round-icon,
.rhythm-icon.orange {
  color: var(--orange);
  border: 3px solid var(--orange);
  background: rgba(255,107,19,.08);
}

.explore .round-icon,
.rhythm-icon.blue {
  color: var(--blue);
  border: 3px solid var(--blue);
  background: rgba(10,109,219,.08);
}

.grow .round-icon {
  color: var(--green);
  border: 3px solid var(--green);
  background: rgba(5,141,73,.08);
}

.pillar h3,
.rhythm-grid h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.18;
  color: var(--navy);
}

.pillar.think h3,
.rhythm-grid article:nth-child(1) h3,
.rhythm-grid article:nth-child(4) h3 {
  color: var(--green);
}

.pillar.express h3,
.rhythm-grid article:nth-child(2) h3 {
  color: var(--orange);
}

.pillar.explore h3,
.rhythm-grid article:nth-child(3) h3 {
  color: var(--blue);
}

.pillar p,
.rhythm-grid p {
  margin: 0;
  color: #26304c;
  font-size: 15px;
}

.experience-card {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 50px;
  align-items: center;
  padding: 54px 62px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f5faf7 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(6,23,67,.055);
}

.experience-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.22;
}

.experience-title span {
  margin-left: 0;
}

.experience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 42px;
}

.experience-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
  color: #26304c;
  font-weight: 500;
}

.experience-list span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-weight: 900;
}

.rhythm {
  padding-top: 30px;
  background: #fff;
}

.rhythm-icon {
  border: 0;
}

.cta-section {
  padding-top: 28px;
}

.cta-card {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 38px 48px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -44px;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(var(--blue) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: .22;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card > img {
  width: 110px;
}

.cta-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.cta-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner img {
  width: 175px;
}

.footer-inner a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 1020px) {
  .hero-grid,
  .experience-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-photo {
    margin-inline: auto;
  }

  .pillar-grid,
  .rhythm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
  }

  .pillar:nth-child(2),
  .rhythm-grid article:nth-child(2) {
    border-right: 0;
  }

  .cta-card {
    grid-template-columns: 100px 1fr;
  }

  .cta-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
  }

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

@media (max-width: 780px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand img {
    width: 200px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn,
  .email-link {
    width: 100%;
  }

  .email-link {
    justify-content: center;
    font-size: 15px;
  }

  .hero-badge {
    width: 72px;
  }

  .experience-card {
    padding: 34px 24px;
  }

  .experience-list {
    grid-template-columns: 1fr;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }

  .cta-card > img {
    margin: 0 auto;
  }

  .cta-actions {
    display: grid;
    justify-items: stretch;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 54px 0;
  }

  .brand img {
    width: 178px;
  }

  h1 {
    font-size: 40px;
    letter-spacing: -1.4px;
  }

  .vision-line {
    font-size: 18px;
  }

  .pillar-grid,
  .rhythm-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pillar,
  .rhythm-grid article {
    border-right: 0;
    padding: 0 12px;
  }

  .hero-photo {
    border-radius: 36% 64% 42% 58% / 42% 46% 54% 58%;
  }

  .round-icon,
  .rhythm-icon {
    width: 86px;
    height: 86px;
  }

  .round-icon svg,
  .rhythm-icon svg {
    width: 48px;
    height: 48px;
  }
}
