.ichtus-page {
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-brand: "Cinzel", "Times New Roman", Georgia, serif;

  --color-text: #001219;
  --color-heading: #001219;
  --color-muted: #264247;
  --color-soft: #4c6a6f;

  --color-border: #d7ebe7;
  --color-border-soft: #deefea;
  --color-card: #ffffff;

  --color-bg: #f9fdfc;
  --color-bg-soft: #f2fbf8;
  --color-bg-accent: #eefaf6;

  --color-accent: #94d2bd;
  --color-accent-strong: #0a9396;
  --color-accent-deep: #087c7f;
  --color-accent-tint: #dff4ec;

  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ichtus-page *,
.ichtus-page *::before,
.ichtus-page *::after {
  box-sizing: border-box;
}

.ichtus-page {
  margin: 0;
  padding: 0;
}

.ichtus-page html {
  scroll-behavior: smooth;
}

.ichtus-page img {
  max-width: 100%;
  display: block;
}

.ichtus-page a {
  text-decoration: none;
  color: inherit;
}

.ichtus-page h1,
.ichtus-page h2,
.ichtus-page h3 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  text-rendering: optimizeLegibility;
}

.ichtus-page .container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.ichtus-page .section-narrow {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ichtus-page section {
  padding: 80px 0;
}

.ichtus-page .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(249, 253, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-soft);
}

.ichtus-page .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.ichtus-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-brand);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-heading);
  text-transform: uppercase;
}

.ichtus-page .brand-logo {
  width: 72px;
  height: 72px;
  display: block;
  flex-shrink: 0;
  color: var(--color-accent-strong);
}

.ichtus-page .brand-text {
  display: inline-block;
  transform: translateY(-1px);
}

.ichtus-page .nav-links {
  display: flex;
  gap: 24px;
}

.ichtus-page .nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.ichtus-page .nav-links a:hover {
  color: var(--color-accent-strong);
}

.ichtus-page .hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 110px;
  background:
    radial-gradient(circle at top left, rgba(148, 210, 189, 0.42) 0%, rgba(148, 210, 189, 0) 38%),
    radial-gradient(circle at 85% 18%, rgba(10, 147, 150, 0.10) 0%, rgba(10, 147, 150, 0) 24%),
    linear-gradient(180deg, #fcfffe 0%, #f2fbf8 100%);
}

.ichtus-page .hero-bg-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(50px);
  opacity: 0.55;
}

.ichtus-page .hero-bg-glow-1 {
  width: 320px;
  height: 320px;
  top: 40px;
  left: -60px;
  background: rgba(148, 210, 189, 0.75);
}

.ichtus-page .hero-bg-glow-2 {
  width: 260px;
  height: 260px;
  right: 8%;
  top: 80px;
  background: rgba(10, 147, 150, 0.14);
}

.ichtus-page .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.ichtus-page .hero-content {
  max-width: 620px;
}

.ichtus-page .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ichtus-page .hero-mockup-image {
  width: min(380px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 18, 25, 0.18));
  transform: translateY(4px);
}

.ichtus-page .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
}

.ichtus-page .hero h1 {
  font-size: 3.5rem;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 10ch;
}

.ichtus-page .hero-text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.ichtus-page .hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.ichtus-page .store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ichtus-page .store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.ichtus-page .store-badge {
  height: 52px;
  width: auto;
  display: block;
}

.ichtus-page .hero-note {
  font-size: 0.95rem;
  color: var(--color-soft);
}

.ichtus-page .intro {
  background: #ffffff;
}

.ichtus-page .intro h2,
.ichtus-page .section-heading h2,
.ichtus-page .cta h2 {
  font-size: 2.4rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.ichtus-page .intro p,
.ichtus-page .section-heading p,
.ichtus-page .cta p {
  color: var(--color-muted);
}

.ichtus-page .section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.ichtus-page .screens {
  background: linear-gradient(180deg, #f4fcf9 0%, #eef9f5 100%);
}

.ichtus-page .mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ichtus-page .screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.ichtus-page .phone-mockup {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.ichtus-page .iphone-preview-frame {
  background: #0d1518;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 18, 25, 0.14);
}

.ichtus-page .features {
  background: #ffffff;
}

.ichtus-page .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ichtus-page .feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 18, 25, 0.035);
}

.ichtus-page .feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 12px;
}

.ichtus-page .feature-card p {
  color: var(--color-muted);
}

.ichtus-page .cta {
  background: linear-gradient(180deg, #eefaf6 0%, #e7f7f2 100%);
}

.ichtus-page .cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #dceee8;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 18, 25, 0.04);
}

.ichtus-page .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ichtus-page .store-button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #94d2bd 0%, #85ccb5 100%);
  color: var(--color-heading);
  font-weight: 700;
  border: 1px solid rgba(10, 147, 150, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ichtus-page .store-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #9dd8c4 0%, #8ad0ba 100%);
}

.ichtus-page .store-button.secondary {
  background: #ffffff;
  border: 1px solid #c8e7dd;
}

.ichtus-page .store-button.secondary:hover {
  border-color: var(--color-accent-strong);
  color: var(--color-accent-strong);
}

.ichtus-page .site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--color-border-soft);
  background: var(--color-bg);
}

.ichtus-page .footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--color-soft);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .ichtus-page .hero {
    padding: 100px 0 80px;
  }

  .ichtus-page .hero-grid,
  .ichtus-page .feature-grid,
  .ichtus-page .screens-grid {
    grid-template-columns: 1fr;
  }

  .ichtus-page .cta-box {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ichtus-page .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .ichtus-page .hero h1 {
    max-width: none;
    font-size: 2.8rem;
  }

  .ichtus-page .intro h2,
  .ichtus-page .section-heading h2,
  .ichtus-page .cta h2 {
    font-size: 2rem;
  }

  .ichtus-page .hero-actions,
  .ichtus-page .cta-actions {
    justify-content: center;
  }

  .ichtus-page .hero-visual {
    order: 2;
  }

  .ichtus-page .cta-box,
  .ichtus-page .cta {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ichtus-page .nav {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 14px 0;
  }

  .ichtus-page .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ichtus-page .hero {
    padding: 88px 0 72px;
  }

  .ichtus-page .hero h1 {
    font-size: 2.3rem;
    line-height: 1.02;
  }

  .ichtus-page .hero-text {
    font-size: 1rem;
  }

  .ichtus-page .intro h2,
  .ichtus-page .section-heading h2,
  .ichtus-page .cta h2 {
    font-size: 1.8rem;
  }

  .ichtus-page .store-badge {
    height: 48px;
  }

  .ichtus-page .premium-phone {
    width: 280px;
    border-radius: 34px;
  }

  .ichtus-page section {
    padding: 64px 0;
  }

  .ichtus-page .feature-card,
  .ichtus-page .cta-box {
    padding: 24px;
  }

  .ichtus-page .footer-content {
    flex-direction: column;
    text-align: center;
  }
}