:root {
  --background: #f4f9f8;
  --foreground: #092622;
  --card: #ffffff;
  --card-foreground: #092622;
  --primary: #125e55;
  --primary-foreground: #ffffff;
  --secondary: #dff2ef;
  --secondary-foreground: #125e55;
  --muted: #e7f0ef;
  --muted-foreground: #607d79;
  --accent: #159c8d;
  --accent-foreground: #ffffff;
  --border: #d2e3e0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-family-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-body);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  line-height: 1.6;
}

iconify-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

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

/* Buttons */

.btn,
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition:
          transform 0.2s ease,
          box-shadow 0.2s ease,
          background-color 0.2s ease,
          color 0.2s ease;
}

.btn:hover,
.nav-btn:hover,
.footer-link:hover,
.nav-link:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 12px 28px -8px rgba(18, 94, 85, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px -10px rgba(18, 94, 85, 0.5);
}

.btn-secondary {
  background-color: var(--card);
  color: var(--foreground);
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.15);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  border: 1px solid rgba(18, 94, 85, 0.08);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px -10px rgba(18, 94, 85, 0.14);
}

.badge iconify-icon {
  font-size: 16px;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(244, 249, 248, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18, 94, 85, 0.06);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  height: 68px;
  width: auto;
}

.brand-logo-small {
  height: 68px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(9, 38, 34, 0.76);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
}

/* Hero */

.hero {
  position: relative;
  padding: 84px 0 120px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: auto auto 0 50%;
  width: 980px;
  height: 980px;
  transform: translateX(-50%);
  background:
          radial-gradient(circle at center, rgba(21, 156, 141, 0.14) 0%, rgba(21, 156, 141, 0.07) 32%, transparent 64%);
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(54px, 8vw, 94px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.launch-banner {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 20px 22px;
  border-radius: 24px;
  background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid rgba(18, 94, 85, 0.08);
  box-shadow: 0 20px 40px -22px rgba(18, 94, 85, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.launch-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(18, 94, 85, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.launch-banner-badge iconify-icon {
  font-size: 16px;
}

.launch-banner-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(9, 38, 34, 0.76);
}

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

.hero-showcase {
  position: relative;
  z-index: 1;
  margin-top: 74px;
  min-height: 620px;
}

.mockup {
  position: absolute;
  width: 290px;
  height: 600px;
  border-radius: 42px;
  border: 12px solid #ffffff;
  background: #ffffff;
  overflow: hidden;
  box-shadow:
          0 30px 70px -20px rgba(18, 94, 85, 0.18),
          0 0 0 1px rgba(0, 0, 0, 0.03);
}

.mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.mockup-center {
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.mockup-left {
  left: calc(50% - 300px);
  top: 40px;
  transform: rotate(-8deg);
  z-index: 2;
}

.mockup-right {
  right: calc(50% - 300px);
  top: 40px;
  transform: rotate(8deg);
  z-index: 2;
}

/* Value section */

.value-section {
  padding: 0 0 120px;
}

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

.value-card {
  padding: 34px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 94, 85, 0.08);
  box-shadow: 0 18px 40px -24px rgba(18, 94, 85, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 156, 141, 0.1);
  color: var(--primary);
  margin-bottom: 20px;
}

.value-icon iconify-icon {
  font-size: 24px;
}

.value-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 16px;
  color: var(--muted-foreground);
}

/* Features */

.features-section {
  padding: 0 0 120px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse .feature-content {
  order: 2;
}

.feature-row.reverse .feature-image {
  order: 1;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(11, 125, 114, 0.08);
  color: #0b7d72;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-title {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  font-weight: 700;
  margin-bottom: 18px;
}

.feature-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 28px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-list-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 156, 141, 0.12);
  color: var(--primary);
  margin-top: 2px;
}

.feature-list-icon iconify-icon {
  font-size: 14px;
}

.feature-list-text h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-list-text p {
  font-size: 15px;
  color: var(--muted-foreground);
}

.feature-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 720px;
}

.feature-mockup {
  width: 320px;
  height: 660px;
  border-radius: 44px;
  border: 12px solid #ffffff;
  box-shadow:
          0 30px 60px -15px rgba(18, 94, 85, 0.15),
          0 0 0 1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 2;
}

.feature-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.feature-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.8;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-blob-muted {
  background: var(--muted);
}

/* Pricing philosophy */

.pricing-philosophy-section {
  padding: 80px 0 140px;
}

.pricing-philosophy-card {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 36px;
  background:
          radial-gradient(circle at top right, rgba(21, 156, 141, 0.12) 0%, transparent 32%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
  border: 1px solid rgba(18, 94, 85, 0.08);
  box-shadow: 0 30px 80px rgba(18, 94, 85, 0.08);
  overflow: hidden;
}

.pricing-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b7d72;
  background: rgba(11, 125, 114, 0.08);
}

.pricing-status {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #125e55;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(18, 94, 85, 0.18);
}

.pricing-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.pricing-copy {
  max-width: 680px;
}

.pricing-philosophy-title {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #0f1720;
}

.pricing-philosophy-lead {
  margin-top: 20px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(15, 23, 32, 0.76);
}

.pricing-philosophy-note {
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.7;
  color: #0b7d72;
  font-weight: 600;
}

.pricing-pillars {
  display: grid;
  gap: 16px;
}

.pricing-pillar {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 94, 85, 0.08);
  box-shadow: 0 16px 32px rgba(18, 94, 85, 0.05);
}

.pricing-pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 156, 141, 0.1);
  color: #125e55;
  margin-bottom: 14px;
}

.pricing-pillar-icon iconify-icon {
  font-size: 22px;
}

.pricing-pillar-title {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f1720;
}

.pricing-pillar p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(15, 23, 32, 0.68);
}

/* Steps */

.steps-section {
  padding: 0 0 160px;
}

.steps-header {
  text-align: center;
  margin-bottom: 80px;
}

.steps-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.steps-header p {
  font-size: 18px;
  color: var(--muted-foreground);
}

.steps-grid {
  display: flex;
  gap: 32px;
  position: relative;
  align-items: stretch;
}

.steps-line {
  position: absolute;
  top: 48px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-card {
  flex: 1;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
}

.step-icon-wrapper {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--background);
  border: 8px solid var(--card);
  margin: -96px auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  position: relative;
}

.step-icon-wrapper iconify-icon {
  font-size: 32px;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--muted-foreground);
  font-size: 16px;
}

/* CTA */

.cta-section {
  padding: 0 0 120px;
  text-align: center;
}

.cta-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 40px;
  border-radius: 40px;
  background: linear-gradient(180deg, var(--card) 0%, var(--background) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px -24px rgba(18, 94, 85, 0.16);
}

.cta-title {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 20px;
  color: var(--muted-foreground);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  padding: 20px 48px;
  font-size: 18px;
}

/* Footer */

.footer {
  padding: 80px 0 40px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  margin-top: 18px;
  color: var(--muted-foreground);
  font-size: 15px;
}

.footer-links-wrapper {
  display: flex;
  gap: 64px;
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--muted-foreground);
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 14px;
}

/* Responsive */

@media (max-width: 1180px) {
  .mockup-left {
    left: calc(50% - 250px);
  }

  .mockup-right {
    right: calc(50% - 250px);
  }

  .feature-row {
    gap: 40px;
  }
}

@media (max-width: 960px) {
  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 72px 0 90px;
  }

  .hero-showcase {
    min-height: 400px;
    margin-top: 48px;
  }

  .mockup {
    width: 200px;
    height: 412px;
    border-radius: 30px;
    border-width: 8px;
  }

  .mockup-left {
    left: calc(50% - 150px);
    top: 20px;
  }

  .mockup-right {
    right: calc(50% - 150px);
    top: 20px;
  }

  .value-grid,
  .feature-row,
  .pricing-main,
  .footer-content,
  .footer-links-wrapper {
    grid-template-columns: 1fr;
    display: grid;
  }

  .feature-row.reverse .feature-content,
  .feature-row.reverse .feature-image {
    order: unset;
  }

  .feature-image {
    min-height: 560px;
  }

  .feature-mockup {
    width: 260px;
    height: 540px;
    border-radius: 36px;
  }

  .pricing-philosophy-card {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .steps-grid {
    flex-direction: column;
    gap: 56px;
  }

  .steps-line {
    display: none;
  }

  .footer-content {
    gap: 32px;
  }

  .footer-links-wrapper {
    gap: 32px;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 14px 0;
  }

  .brand-logo {
    height: 30px;
  }

  .nav-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-title {
    font-size: clamp(42px, 13vw, 66px);
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .launch-banner {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .launch-banner-text {
    font-size: 15px;
  }

  .hero-showcase {
    min-height: 280px;
  }

  .mockup {
    width: 130px;
    height: 268px;
    border-radius: 24px;
    border-width: 6px;
  }

  .mockup-left {
    left: calc(50% - 96px);
    top: 18px;
  }

  .mockup-right {
    right: calc(50% - 96px);
    top: 18px;
  }

  .feature-title,
  .pricing-philosophy-title,
  .cta-title,
  .steps-header h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .feature-desc,
  .pricing-philosophy-lead,
  .cta-desc {
    font-size: 16px;
  }

  .value-card,
  .step-card,
  .cta-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-image {
    min-height: 470px;
  }

  .feature-mockup {
    width: 220px;
    height: 455px;
    border-radius: 32px;
  }

  .pricing-topline {
    margin-bottom: 22px;
  }

  .pricing-status {
    font-size: 0.84rem;
  }

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