:root {
  --bg: #000000;
  --bg-hero: #05211f;
  --panel: rgba(255, 255, 255, .06);
  --panel-2: rgba(255, 255, 255, .08);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .68);
  --line: rgba(255, 255, 255, .10);
  --accent: #30e6d5;
  --accent-light: #40f0e0;
  --accent-2: #1cc7b7;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 18px 42px rgba(0, 0, 0, .38);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, .28);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #040e0d 80%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: .92;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  letter-spacing: .2px;
}

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border: none;
}

.brand-name {
  font-size: 15px;
}

.nav {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
}

.nav-link {
  font-size: 14px;
}

.nav-burger {
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  position: relative;
}

.nav-burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(255, 255, 255, .72);
  border-radius: 2px;
}

.nav-burger span:nth-child(1) {
  top: 12px;
}

.nav-burger span:nth-child(2) {
  top: 19px;
  opacity: .9;
}

.nav-burger span:nth-child(3) {
  top: 26px;
  opacity: .75;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 0 18px;
}

.mobile-nav .container {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--sm {
  padding: 10px 14px;
  font-size: 14px;
}

.btn--primary {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
  color: #001b19;
  box-shadow: 0 14px 36px rgba(48, 230, 213, .28);
}

.btn--primary:hover {
  box-shadow: 0 18px 44px rgba(48, 230, 213, .35);
}

/* Sections */
.section {
  padding: 76px 0;
}

.section--dark {
  background-color: #171A1F;
}

.section--black {
  background-color: #000001;
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: .2px;
}

.section-head--center h2 {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 820px;
}

.section-head--center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 30px;
}

/* Hero */
.hero {
  position: relative;
  padding: 76px 0 64px;
  background:
    radial-gradient(900px 420px at 22% 20%, rgba(48, 230, 213, .10), transparent 60%),
    linear-gradient(180deg, var(--bg-hero), rgba(0, 0, 0, .20));
  border-radius: 80px 0 80px 0;
  overflow: hidden;
  isolation: isolate;
  background-color: #000000;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: .2px;
}

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  font-size: 15px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Phone mock */
.hero-media {
  display: flex;
  justify-content: flex-end;
}

.mock-shell {
  position: relative;
  width: min(420px, 100%);
}

.mock-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(closest-side, rgba(48, 230, 213, .22), transparent 70%);
  filter: blur(10px);
  opacity: .9;
  pointer-events: none;
}

.mock-card {
  position: relative;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform: rotate(5deg);
  overflow: hidden;
}

.mock-card img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  display: block;
}

/* Grids */
.grid {
  display: grid;
  gap: 16px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Feature cards */
.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 160px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(48, 230, 213, .14);
  border: 1px solid rgba(48, 230, 213, .22);
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--accent-light);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: .2px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Gallery – See PicChef in Action */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-card--phone {
  display: grid;
  place-items: center;
}

.gallery-card--phone img {
  object-fit: contain;
  background: transparent;
  height: auto;
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.split-left h2,
.split-right h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
}

.split-left p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.media-card {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow-soft);
}

.media-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.thumb-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .20);
}

.thumb-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.thumb-body {
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .86);
}

/* Testimonials */
.quote-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

.quote-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), rgba(255, 255, 255, .2));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 0 20px rgba(48, 230, 213, .3);
}

.quote-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.quote-by {
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-light);
}

/* Footer */
.site-footer {
  padding: 50px 0;
  background: rgba(0, 0, 0, .34);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-brand small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.brand--footer {
  margin-bottom: 10px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .2px;
}

.footer-col a {
  display: block;
  margin: 7px 0;
  color: var(--muted);
  font-size: 14px;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .65);
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .nav-burger {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-content: center;
  }

  .mock-card {
    transform: rotate(3deg);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .section {
    padding: 62px 0;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .gallery,
  .recipe-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    height: 280px;
  }

  .media-card img {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   IMPRINT
   ========================= */

main {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg) 0%, #040e0d 80%);
}

.section.section--imprint {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
  padding: 46px 0 64px;
}

.section--imprint.card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.section--imprint .card,
.section--imprint .box {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.section--imprint .grid {
  display: block;
  gap: 0;
}

.section--imprint>h2:first-child {
  text-align: center;
  font-size: 26px;
  margin: 0 0 18px;
}

.section--imprint h2 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .2px;
  margin: 0 0 10px;
}

.section--imprint h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
  margin: 18px 0 8px;
  color: rgba(255, 255, 255, .88);
}

.section--imprint p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .72);
}

.section--imprint .muted {
  color: rgba(255, 255, 255, .58);
}

.section--imprint ul {
  margin: 0 0 10px 18px;
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .72);
}

.section--imprint li {
  margin: 6px 0;
}

/* Links */
.section--imprint a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.section--imprint a:hover {
  opacity: 1;
  color: var(--accent-light);
}

/* Divider */
.section--imprint hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin: 14px 0;
}

/* kbd */
.section--imprint .kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .22);
  color: rgba(255, 255, 255, .86);
  white-space: nowrap;
}

/* Stand */
.section--imprint .stamp {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
}

.section--imprint .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(48, 230, 213, .14);
}

@media (max-width: 560px) {
  .section.section--imprint {
    padding: 36px 18px 56px;
  }

  .section--imprint>h2:first-child {
    font-size: 24px;
  }
}
