:root {
  --black: #000000;
  --orange: #ff4400;
  --orange-dark: #d93b04;
  --white: #ffffff;
  --soft-white: #f6f2ee;
  --gray: #666666;
  --muted: #a7a7a7;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.06);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Anek Tamil", Helvetica, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

::selection { background: var(--orange); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.09;
  background-image: radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}
.cursor-glow {
  position: fixed;
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 10%);
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,68,0,.23), transparent 60%);
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  min-height: 74px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(18px);
  z-index: 50;
  transition: .28s ease;
}
.site-header.scrolled { top: 10px; box-shadow: 0 12px 36px rgba(0,0,0,.38); }
.brand { display: inline-flex; align-items: center; }
.brand img { width: clamp(190px, 18vw, 320px); height: auto; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 12px 15px;
  color: rgba(255,255,255,.82);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: .22s ease;
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,.09); }
.nav-pill { background: var(--orange); color: var(--white) !important; box-shadow: 0 12px 28px rgba(255,68,0,.3); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; background: var(--orange); border-radius: 50%; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--white); margin: 4px auto; transition: .2s ease; }

.section-pad { width: var(--container); margin: 0 auto; padding: 116px 0; position: relative; z-index: 1; }
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 58px;
  padding-top: 150px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-family: Inter, Arial, sans-serif;
  font-weight: 900;
  font-size: .76rem;
}
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: currentColor; box-shadow: 0 0 24px var(--orange); }
h1, h2, h3 {
  margin: 0;
  font-family: Inter, Helvetica, Arial, sans-serif;
  letter-spacing: -.055em;
  line-height: .96;
}
h1 { font-size: clamp(3.2rem, 8vw, 7.7rem); max-width: 780px; margin-top: 18px; }
h2 { font-size: clamp(2.35rem, 5vw, 5.2rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2.1rem); }
p { color: rgba(255,255,255,.68); line-height: 1.7; font-size: 1.05rem; margin: 0; }
.hero-copy > p { max-width: 660px; margin: 26px 0 0; font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: var(--white); background: var(--orange); box-shadow: 0 18px 38px rgba(255,68,0,.3); }
.btn.primary:hover { background: #ff5b1d; }
.btn.ghost { color: var(--white); border-color: var(--line); background: rgba(255,255,255,.04); }
.btn.inverse { background: var(--black); color: var(--white); box-shadow: none; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 46px; max-width: 620px; }
.hero-stats div { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.045); }
.hero-stats strong { display: block; font: 900 1.55rem Inter, sans-serif; color: var(--white); }
.hero-stats span { color: rgba(255,255,255,.58); font-weight: 600; }

.hero-visual { position: relative; min-height: 670px; }
.orb { position: absolute; border-radius: 999px; filter: blur(8px); animation: float 7s ease-in-out infinite; }
.orb-a { inset: 80px auto auto 40px; width: 230px; height: 230px; background: rgba(255,68,0,.43); }
.orb-b { right: 30px; bottom: 80px; width: 160px; height: 160px; background: rgba(255,255,255,.12); animation-delay: -3s; }
.floating-card, .image-stack, .mini-chip {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.main-preview { left: 20px; top: 54px; right: 50px; padding: 34px; border-radius: var(--radius-xl); z-index: 3; }
.main-preview span { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.main-preview h2 { font-size: clamp(2.2rem, 4vw, 4.6rem); margin: 12px 0 18px; }
.image-stack { overflow: hidden; border-radius: var(--radius-xl); background: #111; }
.image-stack img { width: 100%; height: 100%; object-fit: cover; }
.card-one { width: 58%; right: 0; top: 255px; aspect-ratio: 4/5; z-index: 2; transform: rotate(3deg); }
.card-two { width: 46%; left: 0; bottom: 36px; aspect-ratio: 4/5; z-index: 4; transform: rotate(-5deg); }
.mini-chip { right: 42px; bottom: 34px; z-index: 5; padding: 16px 18px; border-radius: 999px; font-weight: 900; background: var(--orange); }

.section-heading { display: grid; gap: 18px; margin-bottom: 34px; }
.section-heading.center { text-align: center; justify-items: center; max-width: 850px; margin-inline: auto; }
.section-heading p { max-width: 650px; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.about-panel { min-height: 330px; border-radius: var(--radius-xl); padding: clamp(28px, 5vw, 54px); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; position: relative; }
.about-panel::after { content: ""; position: absolute; inset: auto -80px -120px auto; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.13); }
.about-panel.orange { background: var(--orange); color: var(--black); }
.about-panel.orange p { color: rgba(0,0,0,.76); font-weight: 600; }
.about-panel.dark { background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025)); border: 1px solid var(--line); }
.about-panel h3 { max-width: 700px; margin-bottom: 18px; }

.services { padding-top: 70px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  transition: .26s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,68,0,.6); box-shadow: 0 20px 60px rgba(255,68,0,.08); }
.service-card span { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 28px; border-radius: 50%; background: var(--orange); color: var(--white); font-weight: 900; }
.service-card h3 { font-size: 1.55rem; margin-bottom: 14px; letter-spacing: -.04em; }

.plans { padding-top: 30px; padding-bottom: 80px; }
.plans-card, .work-card {
  border-radius: var(--radius-xl);
  background: var(--orange);
  color: var(--black);
  padding: clamp(32px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.plans-card::after, .work-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.plans-card p, .work-card p { color: rgba(0,0,0,.72); font-weight: 700; margin-top: 16px; }
.plans-card .eyebrow, .work-card .eyebrow { color: var(--black); }
.plans-card > *, .work-card > * { position: relative; z-index: 2; }

.posts-section { padding-top: 80px; }
.post-filters { display: flex; justify-content: center; gap: 10px; margin: 28px 0 32px; flex-wrap: wrap; }
.filter {
  border: 1px solid var(--line);
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.05);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: .2s ease;
}
.filter.active, .filter:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.post-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
  overflow: hidden;
  box-shadow: 0 18px 70px rgba(0,0,0,.25);
  transition: transform .25s ease, border-color .25s ease;
}
.post-card:hover { transform: translateY(-7px); border-color: rgba(255,68,0,.65); }
.post-media { position: relative; display: block; width: 100%; border: 0; padding: 0; color: inherit; background: #070707; aspect-ratio: 4/5; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: contain; cursor: zoom-in; }
.single-media img { object-fit: cover; }
.post-body { padding: 20px; }
.post-tag { color: var(--orange); text-transform: uppercase; font: 900 .73rem Inter, sans-serif; letter-spacing: .13em; }
.post-body h3 { font-size: 1.35rem; margin: 10px 0 10px; line-height: 1.05; }
.post-body p { font-size: .98rem; color: rgba(255,255,255,.64); }
.caption-box {
  margin-top: 16px;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.3);
  max-height: 190px;
  overflow: auto;
  white-space: pre-wrap;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.55;
}
.copy-caption {
  margin-top: 16px;
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}
.carousel-track { position: absolute; inset: 0; display: flex; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.carousel-slide { flex: 0 0 100%; width: 100%; height: 100%; display: grid; place-items: center; border: 0; padding: 0; background: transparent; color: inherit; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.62);
  color: var(--white);
  cursor: pointer;
  font-size: 1.3rem;
  backdrop-filter: blur(10px);
}
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 7px; z-index: 3; }
.dot { width: 7px; height: 7px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,.36); }
.dot.active { background: var(--orange); width: 20px; border-radius: 999px; }

.contact { display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: start; }
.contact-info { padding: 36px 0; }
.contact-info h2 { margin: 16px 0 22px; }
.contact-list { display: grid; gap: 10px; margin-top: 28px; }
.contact-list p { border-left: 3px solid var(--orange); padding-left: 14px; }
.form-card, .inline-form {
  display: grid;
  gap: 14px;
}
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 42px);
  background: linear-gradient(160deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
}
label { display: grid; gap: 8px; color: rgba(255,255,255,.82); font-weight: 800; }
input, textarea {
  width: 100%;
  color: var(--white);
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  outline: none;
  padding: 16px 17px 14px;
  transition: .2s ease;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,68,0,.15); }

.work { padding-top: 40px; }
.inline-form { grid-template-columns: 1fr 1fr 1fr auto; }
.inline-form input { background: rgba(0,0,0,.18); border-color: rgba(0,0,0,.18); color: var(--black); font-weight: 800; }
.inline-form input::placeholder { color: rgba(0,0,0,.58); }
.inline-form input:focus { border-color: var(--black); box-shadow: 0 0 0 4px rgba(0,0,0,.12); }

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 50px 0 70px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.footer img {
  max-width: 260px; width: 164px; margin-bottom: 16px; }
.footer p { max-width: 420px; }
.footer nav { display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start; justify-content: flex-end; }
.footer a { padding: 10px 12px; border-radius: 999px; color: rgba(255,255,255,.72); border: 1px solid var(--line); }
.footer a:hover { color: var(--white); background: var(--orange); border-color: var(--orange); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(16px);
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 86vh; max-width: 92vw; object-fit: contain; border-radius: 24px; box-shadow: var(--shadow); }
.lightbox p { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); color: var(--white); font-weight: 900; text-align: center; }
.lightbox-close { position: fixed; top: 22px; right: 22px; width: 52px; height: 52px; border: 0; border-radius: 50%; background: var(--orange); color: var(--white); font-size: 2rem; cursor: pointer; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 120px);
  z-index: 120;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(255,68,0,.28);
  transition: .24s ease;
}
.toast.show { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .13s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }

@media (max-width: 1050px) {
  .hero, .contact { grid-template-columns: 1fr; }
  .hero-visual { min-height: 620px; }
  .service-grid, .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .inline-form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 26px, 1180px); }
  .site-header { top: 10px; border-radius: 26px; min-height: 66px; }
  .brand img { width: 150px; }
  .menu-toggle { display: block; position: relative; z-index: 60; }
  .nav {
    position: fixed;
    inset: 82px 0 auto;
    margin: 0 auto;
    width: var(--container);
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(0,0,0,.94);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: .22s ease;
  }
  .nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a { text-align: center; }
  .section-pad { padding: 82px 0; }
  .hero { padding-top: 126px; gap: 22px; }
  h1 { font-size: clamp(3rem, 17vw, 5rem); }
  h2 { font-size: clamp(2.25rem, 12vw, 3.45rem); }
  .hero-copy > p { font-size: 1.02rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-visual { min-height: 560px; }
  .main-preview { left: 0; right: 0; top: 20px; padding: 24px; }
  .card-one { width: 65%; top: 252px; }
  .card-two { width: 56%; bottom: 32px; }
  .mini-chip { right: 8px; bottom: 20px; }
  .about-grid, .service-grid, .posts-grid { grid-template-columns: 1fr; }
  .plans-card, .work-card { grid-template-columns: 1fr; }
  .inline-form { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
  .footer nav { justify-content: flex-start; }
  .post-media { aspect-ratio: 4/5; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


@media (max-width: 768px) {
  .brand img { width: 170px; }
}

@media (max-width: 640px) { .brand img { width: 176px; } }


