:root {
  color-scheme: light;
  --ink: #dbe9ff;
  --ink-strong: #f7f9ff;
  --ink-muted: rgba(219, 233, 255, 0.7);
  --ink-soft: rgba(219, 233, 255, 0.5);
  --night: #020410;
  --midnight: #050b1e;
  --aura: #4d8dff;
  --aura-strong: #8fb7ff;
  --card: rgba(6, 12, 28, 0.7);
  --card-border: rgba(138, 170, 230, 0.2);
  --glass: rgba(7, 14, 30, 0.55);
  --bg: radial-gradient(circle at top, #0b1738 0%, #04060f 55%, #03050f 100%);
  --bg-alt: linear-gradient(180deg, #081a3d 0%, #050b1f 60%, #03050f 100%);
  --shadow: rgba(2, 4, 16, 0.4);
  --bg-work: radial-gradient(circle at top, #0f1e45 0%, #081330 55%, #040814 100%);
  --bg-process: radial-gradient(circle at top, #132249 0%, #081532 60%, #040812 100%);
  --bg-testimonials: radial-gradient(circle at top, #0e1b3f 0%, #071230 60%, #04070f 100%);
  --bg-examples: radial-gradient(circle at top, #12224d 0%, #081330 60%, #04070f 100%);
  --bg-plans: radial-gradient(circle at top, #0f1d43 0%, #07122d 60%, #04070f 100%);
  --bg-details: radial-gradient(circle at top, #102146 0%, #081330 60%, #04070f 100%);
  --bg-addons: radial-gradient(circle at top, #0d1b3b 0%, #07112a 60%, #04070f 100%);
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 110px;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  z-index: 5;
  background: linear-gradient(180deg, rgba(2, 4, 16, 0.9) 0%, rgba(2, 4, 16, 0) 100%);
}


.brand {
  font-family: "Italiana", serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--ink-strong);
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.site-nav a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--ink-strong);
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 6vw 120px;
  overflow: hidden;
}


.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.8;
  mix-blend-mode: screen;
}

.orb-one {
  width: 420px;
  height: 420px;
  top: 10%;
  right: -120px;
  background: radial-gradient(circle, rgba(93, 140, 255, 0.5), rgba(15, 30, 70, 0));
}

.orb-two {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: -80px;
  background: radial-gradient(circle, rgba(140, 185, 255, 0.45), rgba(7, 16, 40, 0));
}

.orb-three {
  width: 180px;
  height: 180px;
  top: 35%;
  left: 45%;
  background: radial-gradient(circle, rgba(120, 170, 255, 0.35), rgba(7, 12, 30, 0));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.85);
  transform: scale(1.02);
  z-index: 0;
  transition: opacity 0.6s ease;
}


.hero-loop-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(2, 4, 16, 0) 0%, rgba(2, 4, 16, 0.65) 55%, rgba(2, 4, 16, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 4, 16, 0.8) 0%, rgba(7, 14, 30, 0.5) 40%, rgba(5, 10, 24, 0.9) 100%);
  z-index: 2;
}


.hero.loop-fade .hero-loop-mask {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  display: grid;
  gap: 20px;
  animation: rise 1.2s ease both;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero h1 {
  font-family: "Italiana", serif;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.08em;
  color: var(--ink-strong);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn.primary {
  background: linear-gradient(120deg, #3d6dff 0%, #7aa7ff 100%);
  color: #020311;
  box-shadow: 0 10px 30px rgba(62, 110, 255, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(62, 110, 255, 0.45);
}

.btn.ghost {
  border-color: rgba(219, 233, 255, 0.3);
  color: var(--ink-strong);
  background: rgba(4, 8, 20, 0.4);
}

.btn.ghost:hover {
  background: rgba(10, 18, 40, 0.7);
}

.hero-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.showcase,
.process,
.testimonials,
.examples,
.plan-details,
.addons,
.plans {
  padding: 120px 6vw;
}

.showcase {
  background: var(--bg-work);
}

.process {
  background: var(--bg-process);
}

.testimonials {
  background: var(--bg-testimonials);
}

.examples {
  background: var(--bg-examples);
}

.plans {
  background: var(--bg-plans);
}

.plan-details {
  background: var(--bg-details);
}

.addons {
  background: var(--bg-addons);
}

.examples-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.example-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 26px;
  display: grid;
  gap: 18px;
  color: var(--ink-muted);
  box-shadow: 0 20px 40px var(--shadow);
}

.example-card h3 {
  color: var(--ink-strong);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
}

.example-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.examples-viewer {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.examples-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 2, 10, 0.85);
}

.viewer-panel {
  position: relative;
  width: min(1200px, 92vw);
  height: min(760px, 82vh);
  background: #050913;
  border-radius: 24px;
  border: 1px solid rgba(120, 160, 230, 0.3);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 40px 80px rgba(2, 4, 16, 0.6);
  display: grid;
  grid-template-rows: auto 1fr;
}

.viewer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(6, 12, 28, 0.85);
  border-bottom: 1px solid rgba(120, 160, 230, 0.25);
}

.viewer-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.viewer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.viewer-btn {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(20, 30, 60, 0.6);
  color: var(--ink-strong);
  border: 1px solid rgba(120, 160, 230, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.viewer-btn:hover {
  transform: translateY(-1px);
  background: rgba(40, 70, 140, 0.6);
}

.viewer-btn.close {
  background: rgba(80, 40, 60, 0.7);
  border-color: rgba(200, 120, 160, 0.4);
}

.viewer-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0f1c;
}

.plan-detail-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan-detail {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 16px;
  color: var(--ink-muted);
  box-shadow: 0 20px 40px var(--shadow);
}

.plan-detail h3 {
  color: var(--ink-strong);
}

.plan-detail ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.plan-detail li::before {
  content: "•";
  color: var(--aura-strong);
  margin-right: 8px;
}

.plan-note {
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}

.plan-explain {
  font-size: 14px;
  line-height: 1.7;
}

.addon-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.addon-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 10px;
  color: var(--ink-muted);
  box-shadow: 0 18px 36px var(--shadow);
}

.addon-card h3 {
  color: var(--ink-strong);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.showcase-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 24px;
  display: grid;
  gap: 14px;
  color: var(--ink-muted);
  box-shadow: 0 20px 40px var(--shadow);
}

.showcase-card h3 {
  color: var(--ink-strong);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
}

.showcase-card span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.process-steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
  background: rgba(8, 16, 36, 0.7);
  border: 1px solid rgba(143, 183, 255, 0.2);
  border-radius: 22px;
  padding: 26px;
  display: grid;
  gap: 12px;
  box-shadow: 0 18px 36px var(--shadow);
}

.process-step span {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.process-step h3 {
  color: var(--ink-strong);
}

.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 26px;
  display: grid;
  gap: 16px;
  box-shadow: 0 20px 40px var(--shadow);
  color: var(--ink-muted);
}

.testimonial-card span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.plans {
  position: relative;
}

.section-header {
  max-width: 620px;
  margin-bottom: 48px;
  display: grid;
  gap: 16px;
}

.section-header h2 {
  font-family: "Italiana", serif;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--ink-strong);
}

.section-header p {
  color: var(--ink-muted);
  line-height: 1.7;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-muted);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pricing-toggle small {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(120, 160, 230, 0.3);
  border-radius: 999px;
  transition: background 0.3s ease;
}

.slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: #f7f9ff;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.switch input:checked + .slider {
  background: rgba(120, 160, 230, 0.6);
}

.switch input:checked + .slider::before {
  transform: translateX(24px);
}

.plan-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px var(--shadow);
  transform: translateY(0);
  transition: transform 0.3s ease, border 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 183, 255, 0.5);
}

.plan-card h3 {
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price {
  font-size: 32px;
  font-weight: 600;
  color: var(--ink-strong);
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--ink-muted);
}

.plan-card li::before {
  content: "•";
  color: var(--aura-strong);
  margin-right: 8px;
}

.plan-card .btn {
  width: fit-content;
}

.featured {
  position: relative;
  border: 1px solid rgba(122, 167, 255, 0.6);
  background: linear-gradient(150deg, rgba(10, 20, 50, 0.9), rgba(7, 12, 28, 0.7));
  box-shadow: 0 30px 60px rgba(40, 90, 200, 0.35);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-strong);
  background: rgba(122, 167, 255, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
}

.contact {
  padding: 120px 6vw 160px;
  background: radial-gradient(circle at top, rgba(20, 40, 90, 0.5) 0%, rgba(2, 4, 16, 0.95) 70%);
}

.contact-card {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  background: var(--glass);
  border: 1px solid rgba(143, 183, 255, 0.3);
  padding: 40px;
  border-radius: 28px;
  backdrop-filter: blur(24px);
}

.contact-form {
  display: grid;
  gap: 16px;
  min-width: min(320px, 100%);
}

.field {
  display: grid;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(143, 183, 255, 0.25);
  background: rgba(6, 12, 28, 0.5);
  color: var(--ink-strong);
  font-family: inherit;
}


.contact-card h2 {
  font-family: "Italiana", serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink-strong);
}

.site-footer {
  text-align: center;
  padding: 24px 6vw 40px;
  font-size: 12px;
  color: var(--ink-muted);
  background: #01020a;
}


[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
    padding: 18px 6vw;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    letter-spacing: 0.2em;
  }

  .hero {
    padding: 160px 6vw 80px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .viewer-panel {
    height: 80vh;
  }
}

@media (max-width: 600px) {
  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

}
