@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@200;300;400;500&display=swap');

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background-color: #0F1316;
  color: #E8E8E8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #D1DCE6;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #A4B0C0;
}

p {
  margin-bottom: 1.5rem;
  color: #A0AAB5;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.35rem);
  color: #C4CDD6;
  font-weight: 300;
  line-height: 1.6;
  max-width: 70ch;
}

/* --- LAYOUT UTILITIES --- */
.ic-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.ic-section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.ic-grid {
  display: grid;
  gap: 2rem;
}

.ic-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ic-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ic-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* --- HEADER & NAV --- */
.ic-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background-color 0.3s ease, padding 0.3s ease;
  background-color: rgba(15, 19, 22, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ic-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ic-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ic-nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.ic-nav__link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #A0AAB5;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  position: relative;
}

.ic-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #C8D0D9;
  transition: width 0.3s ease;
}

.ic-nav__link:hover {
  color: #FFFFFF;
}

.ic-nav__link:hover::after {
  width: 100%;
}

/* --- HERO --- */
.ic-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 70% 30%, #1A222C 0%, #0F1316 60%);
  padding-top: 6rem;
}

.ic-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ic-hero__eyebrow {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7A909D;
  margin-bottom: 1.5rem;
}

.ic-hero__title {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #E8E8E8 0%, #A4B0C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ic-hero__subtitle {
  font-size: 1.125rem;
  color: #A0AAB5;
  margin-bottom: 2.5rem;
  max-width: 45ch;
}

.ic-hero__actions {
  display: flex;
  gap: 1rem;
}

.ic-hero__image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-color: #161C23;
}

.ic-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* --- BUTTONS --- */
.ic-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.ic-btn--primary {
  background-color: #1D2B38;
  color: #FFFFFF;
  border-color: #2A3B4C;
}

.ic-btn--primary:hover {
  background-color: #263A4D;
  border-color: #3A5066;
}

.ic-btn--outline {
  background-color: transparent;
  color: #A0AAB5;
  border-color: #3A4450;
}

.ic-btn--outline:hover {
  border-color: #6B7A8C;
  color: #FFFFFF;
}

/* --- CARDS --- */
.ic-card {
  background-color: #14191F;
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid #1E252E;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ic-card:hover {
  transform: translateY(-4px);
  border-color: #2A3B4C;
}

.ic-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #D1DCE6;
}

.ic-card__text {
  color: #8A96A3;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- STATS --- */
.ic-stats {
  background-color: #12171D;
}

.ic-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.ic-stat__number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #7A909D;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ic-stat__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5A6672;
}

/* --- CTA --- */
.ic-cta {
  background: linear-gradient(135deg, #16222E 0%, #101418 100%);
  text-align: center;
}

.ic-cta__title {
  margin-bottom: 1rem;
}

.ic-cta__text {
  margin-bottom: 2rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* --- FAQ --- */
.ic-faq__item {
  border-bottom: 1px solid #1E252E;
  padding: 1.5rem 0;
}

.ic-faq__question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #D1DCE6;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.ic-faq__answer {
  color: #8A96A3;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- FOOTER --- */
.ic-footer {
  background-color: #0B0E11;
  padding: 4rem 0 2rem;
  border-top: 1px solid #161C23;
}

.ic-footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.ic-footer__brand p {
  max-width: 30ch;
  color: #5A6672;
  font-size: 0.9rem;
}

.ic-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ic-footer__col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7A909D;
  margin-bottom: 1.5rem;
}

.ic-footer__list {
  list-style: none;
}

.ic-footer__list li {
  margin-bottom: 0.75rem;
}

.ic-footer__list a {
  color: #5A6672;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.ic-footer__list a:hover {
  color: #A0AAB5;
}

.ic-footer__bottom {
  border-top: 1px solid #161C23;
  padding-top: 2rem;
  text-align: center;
  color: #3A4450;
  font-size: 0.8rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .ic-nav__list {
    display: none; /* For simplicity in this example, hide on mobile */
  }

  .ic-hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ic-hero__image-wrapper {
    aspect-ratio: 16/9;
    order: -1;
  }

  .ic-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ic-footer__links {
    grid-template-columns: 1fr;
  }
}img,svg,video{max-width:100%;height:auto}body{margin:0}html{-webkit-text-size-adjust:100%}*{box-sizing:border-box}