/* Material You Theme — Premium Edition */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --foreground: 240 10% 10%;
  --card: 240 18% 98%;
  --accent: 221.25 40% 92.16%;
  --muted-foreground: 240 5% 40%;
  --primary-foreground: 0 0% 100%;
  --radius: 1.75rem;
  --primary: 212 100% 45%;
  --border: 240 10% 88%;
  --secondary: 240 20% 90%;
  --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #22D3EE 100%);
  --gradient-hero: linear-gradient(160deg, #060B18 0%, #1a1145 30%, #0e2a5c 60%, #0a1628 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: -0.01em;
  background: #f4f2ff;
  color: hsl(var(--foreground));
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

a { color: hsl(var(--primary)); text-decoration: none; transition: all 0.3s ease; }
a:hover { opacity: 0.85; }

/* ===== M3 Button ===== */
.m3-button {
  height: 56px;
  padding: 0 32px;
  border-radius: 28px;
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(79,70,229,0.4);
  position: relative;
  overflow: hidden;
}

.m3-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.m3-button:hover {
  box-shadow: 0 8px 32px rgba(79,70,229,0.55);
  transform: translateY(-2px);
}

.m3-button:hover::after { opacity: 1; }

/* ===== Layout ===== */
.page-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-block { padding: 6rem 0; position: relative; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: var(--gradient-primary);
  margin-top: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ===== Gradient Divider ===== */
.gradient-divider {
  height: 4px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 2px;
  margin: 0 auto;
  max-width: 320px;
  opacity: 0.35;
}

/* ===== Block 1: Navigation ===== */
.block-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(79,70,229,0.08);
  padding: 0.875rem 0;
}

.block-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.block-nav__logo {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.block-nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.block-nav__links a {
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: all 0.3s ease;
}

.block-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.block-nav__links a:hover { color: hsl(var(--primary)); opacity: 1; }
.block-nav__links a:hover::after { width: 100%; }

.block-nav__cta {
  height: 44px;
  padding: 0 24px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  background: var(--gradient-primary);
  color: #ffffff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(79,70,229,0.3);
}

.block-nav__cta:hover {
  box-shadow: 0 6px 24px rgba(79,70,229,0.5);
  transform: translateY(-1px);
}

@media (max-width: 768px) { .block-nav__links { display: none; } }

/* ===== Block 2: Hero ===== */
.block-hero {
  padding: 7rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.block-hero__bg { display: none; }

.block-hero__orb {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.block-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,70,229,0.5) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation: orbFloat 15s ease-in-out infinite;
}

.block-hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34,211,238,0.4) 0%, transparent 70%);
  bottom: -15%;
  right: 0%;
  animation: orbFloat 18s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 30px) scale(1.02); }
}

.block-hero__content { position: relative; z-index: 1; }

.block-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.block-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.block-hero__title span {
  background: linear-gradient(135deg, #a5b4fc, #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.block-hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.block-hero__search {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 2.25rem;
  padding: 8px;
}

.block-hero__search-input {
  width: 100%;
  height: 58px;
  padding: 0 170px 0 1.75rem;
  border-radius: 1.75rem;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 1.05rem;
  font-family: 'Inter', system-ui, sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.block-hero__search-input::placeholder { color: rgba(255,255,255,0.45); }
.block-hero__search-input:focus { background: rgba(255,255,255,0.14); }

.block-hero__search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  padding: 0 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  background: var(--gradient-primary);
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(79,70,229,0.5);
}

.block-hero__search-btn:hover {
  box-shadow: 0 8px 28px rgba(79,70,229,0.65);
  transform: translateY(-50%) scale(1.03);
}

.block-hero__extensions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.block-hero__ext-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.block-hero__ext-item strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

@media (max-width: 600px) {
  .block-hero__search-input { padding-right: 1.75rem; height: 50px; }
  .block-hero__search-btn {
    position: relative; right: auto; top: auto; transform: none;
    width: 100%; margin-top: 0.75rem; height: 48px;
  }
  .block-hero__search-btn:hover { transform: scale(1.03); }
}

/* ===== Block 3: Domain Registration ===== */
.block-domains { padding: 6rem 0; }

.block-domains__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.block-domains__card {
  background: #ffffff;
  border: 1px solid rgba(79,70,229,0.1);
  border-radius: var(--radius);
  padding: 2.25rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(79,70,229,0.06);
}

.block-domains__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.block-domains__card:hover {
  box-shadow: 0 20px 48px rgba(79,70,229,0.15);
  transform: translateY(-6px);
  border-color: rgba(79,70,229,0.25);
}

.block-domains__card:hover::before { opacity: 1; }

.block-domains__card-ext {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.block-domains__card-desc {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.block-domains__card-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.block-domains__card-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}

.block-domains__card-btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid rgba(79,70,229,0.2);
  cursor: pointer;
  background: transparent;
  color: hsl(var(--primary));
  font-family: 'Inter', system-ui, sans-serif;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.block-domains__card-btn:hover {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(79,70,229,0.35);
  transform: translateY(-2px);
}

/* ===== Block 4: Hosting Services ===== */
.block-hosting { padding: 6rem 0; }

.block-hosting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.block-hosting__item {
  background: #ffffff;
  border: 1px solid rgba(79,70,229,0.1);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(79,70,229,0.06);
}

.block-hosting__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.block-hosting__item:hover {
  box-shadow: 0 20px 48px rgba(79,70,229,0.15);
  transform: translateY(-4px);
}

.block-hosting__item:hover::after { transform: scaleX(1); }

.block-hosting__icon {
  width: 56px;
  height: 56px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(34,211,238,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.block-hosting__item-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.block-hosting__item-desc {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.block-hosting__item-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: hsl(var(--primary));
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.block-hosting__item-link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}

.block-hosting__item-link:hover::after { transform: translateX(6px); }

/* ===== Block 5: Business Email ===== */
.block-email { padding: 6rem 0; }

.block-email__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(79,70,229,0.1);
  border-radius: var(--radius);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(79,70,229,0.08);
}

.block-email__container::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.block-email__content-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.block-email__content-desc {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.block-email__features { list-style: none; margin-bottom: 2rem; }

.block-email__features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.block-email__features li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(34,211,238,0.15));
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.block-email__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-email__visual-box {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eef2ff, #e0f7fa);
  border: 1px solid rgba(79,70,229,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(79,70,229,0.06);
}

.block-email__visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.7), transparent 60%);
}

@media (max-width: 768px) {
  .block-email__container { grid-template-columns: 1fr; padding: 2rem; }
}

/* ===== Block 6: SEO AIO GEO ===== */
.block-seo { padding: 6rem 0; }

.block-seo__container {
  background: linear-gradient(135deg, #eef2ff, #f0eaff, #e0f7fa);
  border: 1px solid rgba(79,70,229,0.1);
  border-radius: var(--radius);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(79,70,229,0.06);
}

.block-seo__container::before {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,211,238,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.block-seo__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.block-seo__desc {
  font-size: 1.05rem;
  color: hsl(var(--muted-foreground));
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.block-seo__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.block-seo__pillar {
  background: #ffffff;
  border-radius: calc(var(--radius) - 0.5rem);
  padding: 2rem;
  border: 1px solid rgba(79,70,229,0.08);
  box-shadow: 0 2px 12px rgba(79,70,229,0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.block-seo__pillar:hover {
  box-shadow: 0 16px 40px rgba(79,70,229,0.12);
  transform: translateY(-4px);
}

.block-seo__pillar-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }

.block-seo__pillar-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.block-seo__pillar-desc {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ===== Block 7: Why Choose Us ===== */
.block-why { padding: 6rem 0; }

.block-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.block-why__item {
  background: #ffffff;
  border: 1px solid rgba(79,70,229,0.1);
  border-radius: var(--radius);
  padding: 2.25rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(79,70,229,0.06);
}

.block-why__item:hover {
  box-shadow: 0 20px 48px rgba(79,70,229,0.15);
  transform: translateY(-4px);
}

.block-why__item-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(34,211,238,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.block-why__item-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.block-why__item-desc {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ===== Block 8: Footer / CTA ===== */
.block-footer { padding: 6rem 0 2rem; }

.block-footer__cta {
  background: var(--gradient-hero);
  border-radius: var(--radius);
  padding: 5rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.block-footer__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(79,70,229,0.35), transparent 50%),
    radial-gradient(ellipse at 75% 70%, rgba(34,211,238,0.25), transparent 50%);
  pointer-events: none;
}

.block-footer__cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.block-footer__cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
  position: relative;
}

.block-footer__cta-btn {
  height: 56px;
  padding: 0 36px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: #ffffff;
  color: hsl(var(--primary));
  font-family: 'Inter', system-ui, sans-serif;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
}

.block-footer__cta-btn:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.block-footer__bottom {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

.block-footer__brand-name {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.block-footer__brand-desc {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  max-width: 280px;
}

.block-footer__col-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.block-footer__col-links { list-style: none; }
.block-footer__col-links li { margin-bottom: 0.6rem; }

.block-footer__col-links a {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
}

.block-footer__col-links a:hover { color: hsl(var(--primary)); }

.block-footer__copyright {
  text-align: center;
  padding-top: 2.5rem;
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}

@media (max-width: 768px) { .block-footer__bottom { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .block-footer__bottom { grid-template-columns: 1fr; } }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}