/* ============================================================
   MeeTurk — meeturk.com
   Warm editorial: navy + honey yellow on cream paper.
   Fonts: Sora (display) · DM Sans (body)
   ============================================================ */

:root {
  --navy-950: #080d18;
  --navy-900: #0e1626;
  --navy-800: #141c30;
  --navy-700: #1a2236;
  --navy-500: #2b3a5e;
  --navy-300: #7b8ba9;

  --yellow-300: #ffd683;
  --yellow-500: #f4b428;
  --yellow-600: #d99410;
  --yellow-100: #fff1cf;

  --sun-500: #ff9a24;
  --sun-600: #ed6a2e;

  --cream: #faf6ee;
  --cream-deep: #f1ebde;
  --paper: #ffffff;

  --ink-900: #0e1626;
  --ink-600: #5a6378;
  --ink-500: #7b8398;

  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;

  --radius-lg: 26px;
  --radius-md: 18px;

  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink-900);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* subtle paper grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--yellow-500); color: var(--navy-900); }

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============ TYPE UTILITIES ============ */
.overline {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--sun-600);
  margin-bottom: 1rem;
}
.overline--yellow { color: var(--yellow-500); }

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.h2 em {
  font-style: normal;
  color: var(--sun-600);
  position: relative;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink-900);
}
.body {
  margin-top: 1.1rem;
  color: var(--ink-600);
  font-size: 1rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: var(--navy-800);
  color: var(--cream);
  box-shadow: 0 10px 24px -10px rgba(14, 22, 38, 0.55);
}
.btn--primary:hover { box-shadow: 0 16px 32px -12px rgba(14, 22, 38, 0.6); }

.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  box-shadow: inset 0 0 0 2px var(--navy-800);
}
.btn--ghost:hover { background: rgba(26, 34, 54, 0.06); }

.btn--yellow {
  background: var(--yellow-500);
  color: var(--navy-900);
  font-size: 1.05rem;
  box-shadow: 0 12px 30px -10px rgba(244, 180, 40, 0.55);
}
.btn--yellow:hover { background: var(--yellow-300); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(14, 22, 38, 0.08);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { height: 44px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy-700);
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  background: var(--yellow-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__cta {
  background: var(--navy-800);
  color: var(--cream) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  transition: background 0.25s ease;
}
.nav__cta:hover { background: var(--navy-500); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 24px; height: 2.5px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid rgba(14, 22, 38, 0.08);
  box-shadow: 0 20px 30px -20px rgba(14, 22, 38, 0.25);
}
.nav__mobile a {
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  color: var(--navy-800);
  padding: 1rem 1.6rem;
  border-bottom: 1px solid rgba(14, 22, 38, 0.06);
}
.nav__mobile.is-open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 1.5rem 5rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.hero__blob--1 {
  width: 620px; height: 620px;
  right: -180px; top: -160px;
  background: radial-gradient(circle, var(--yellow-300), transparent 70%);
  animation: drift 14s ease-in-out infinite alternate;
}
.hero__blob--2 {
  width: 480px; height: 480px;
  left: -200px; bottom: -140px;
  background: radial-gradient(circle, #ffd9b3, transparent 70%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 40px) scale(1.08); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 34, 54, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 34, 54, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hero__overline {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--sun-600);
  margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}
.hero__line { display: block; }
.hero__line--accent {
  color: transparent;
  background: linear-gradient(96deg, var(--sun-600) 5%, var(--yellow-500) 55%, var(--sun-500) 95%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__sub {
  margin-top: 1.8rem;
  max-width: 34rem;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--ink-600);
}
.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero__note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-500);
}

/* rotating stamp */
.hero__stamp {
  position: absolute;
  right: clamp(1rem, 8vw, 8rem);
  bottom: clamp(2rem, 9vh, 6rem);
  width: 128px; height: 128px;
}
.hero__stamp svg {
  width: 100%; height: 100%;
  animation: spin 22s linear infinite;
}
.hero__stamp text {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  fill: var(--navy-700);
}
.hero__stamp-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* load-in reveal */
.reveal-load {
  opacity: 0;
  transform: translateY(26px);
  animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--d, 0) * 0.13s + 0.1s);
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--navy-900);
  color: var(--cream);
  overflow: hidden;
  padding: 1.05rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 14px 34px -18px rgba(14, 22, 38, 0.55);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: scroll 36s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track i {
  font-style: normal;
  color: var(--yellow-500);
  font-size: 0.85rem;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 1.5rem; }
.section__inner { max-width: var(--maxw); margin: 0 auto; }

.section--navy {
  background:
    radial-gradient(ellipse 70% 55% at 85% 0%, rgba(43, 58, 94, 0.55), transparent 60%),
    var(--navy-900);
  color: var(--cream);
}
.section--navy .h2 { color: #fff; }
.section--cream { background: var(--cream-deep); }

/* ============ ABOUT ============ */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about__left { position: sticky; top: 7rem; }

/* ============ FEATURES ============ */
.features__head { margin-bottom: 3.2rem; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.fcard {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.7rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.fcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(244, 180, 40, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.fcard:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 180, 40, 0.4);
}
.fcard:hover::before { opacity: 1; }

.fcard--wide { grid-column: span 2; }
.fcard--accent {
  background: linear-gradient(135deg, rgba(244, 180, 40, 0.16), rgba(255, 154, 36, 0.07));
  border-color: rgba(244, 180, 40, 0.35);
}

.fcard__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--yellow-500);
}
.fcard__icon {
  display: block;
  font-size: 1.9rem;
  margin: 1.1rem 0 0.8rem;
}
.fcard h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.55rem;
}
.fcard p {
  font-size: 0.93rem;
  line-height: 1.62;
  color: rgba(250, 246, 238, 0.72);
}

/* ============ VALUES ============ */
.values__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}
.vrow {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 2rem 0.4rem;
  border-top: 1.5px solid rgba(14, 22, 38, 0.12);
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.vrow:last-child { border-bottom: 1.5px solid rgba(14, 22, 38, 0.12); }
.vrow:hover {
  background: rgba(244, 180, 40, 0.07);
  padding-left: 1rem;
}
.vrow__num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--sun-600);
  line-height: 1.1;
  flex-shrink: 0;
}
.vrow h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.vrow p {
  max-width: 44rem;
  color: var(--ink-600);
  font-size: 0.98rem;
}

/* ============ COMPANY ============ */
.company__grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.ccard {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.1rem;
  box-shadow:
    0 24px 48px -24px rgba(14, 22, 38, 0.3),
    0 0 0 1px rgba(14, 22, 38, 0.05);
  transform: rotate(1.6deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.ccard::before {
  content: "✈";
  position: absolute;
  top: -18px; right: 22px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--yellow-500);
  color: var(--navy-900);
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 8px 18px -8px rgba(217, 148, 16, 0.7);
}
.ccard:hover { transform: rotate(0deg) translateY(-4px); }
.ccard__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--ink-500);
  margin-bottom: 0.5rem;
}
.ccard__line { font-size: 1rem; color: var(--ink-900); }
.ccard__line a {
  color: var(--sun-600);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow-300);
}
.ccard hr {
  border: none;
  border-top: 1.5px dashed rgba(14, 22, 38, 0.15);
  margin: 1.4rem 0;
}

/* ============ CTA ============ */
.cta__inner { text-align: center; max-width: 760px; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta__title em {
  font-style: normal;
  color: var(--yellow-500);
}
.cta__sub {
  margin: 1.3rem auto 2.2rem;
  max-width: 30rem;
  color: rgba(250, 246, 238, 0.75);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-950);
  color: rgba(250, 246, 238, 0.8);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
}
.footer__logo {
  height: 52px;
  width: auto;
  background: var(--cream);
  border-radius: 12px;
  padding: 6px 10px;
}
.footer__brand p {
  margin-top: 1rem;
  font-size: 0.92rem;
  max-width: 16rem;
  color: rgba(250, 246, 238, 0.55);
}
.footer__head {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-500);
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.28rem 0;
  color: rgba(250, 246, 238, 0.72);
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer__col a:hover { color: var(--yellow-300); transform: translateX(3px); }
.footer__col address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(250, 246, 238, 0.72);
}
.footer__bar {
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  padding: 1.4rem 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(250, 246, 238, 0.45);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--rd, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ DOC PAGES (privacy / terms) ============ */
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 9rem 1.5rem 5rem;
}
.doc h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.doc__updated {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 2.8rem;
}
.doc h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.4rem 0 0.7rem;
  padding-top: 1.6rem;
  border-top: 1.5px solid rgba(14, 22, 38, 0.1);
}
.doc p { color: var(--ink-600); }
.doc a { color: var(--sun-600); font-weight: 600; }
.doc__back {
  display: inline-block;
  margin-top: 3.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--navy-800);
  border-bottom: 2px solid var(--yellow-500);
  padding-bottom: 2px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
  .fcard--wide { grid-column: span 2; }
  .about__grid, .company__grid { grid-template-columns: 1fr; }
  .about__left { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero { min-height: auto; padding-top: 7.5rem; }
  .hero__stamp { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .fcard--wide { grid-column: span 1; }
  .vrow { gap: 1.1rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-load { opacity: 1; transform: none; }
}
