:root {
  --ink: #2b1a15;
  --cocoa: #4f352d;
  --coffee: #6f4a3f;
  --caramel: #d69b57;
  --caramel-deep: #b8793d;
  --cream: #fff8eb;
  --cream-strong: #f6dfbd;
  --paper: #fffdf8;
  --white: #ffffff;
  --sage: #6f8c68;
  --sage-soft: #edf4ea;
  --line: #ead8bf;
  --muted: #77625a;
  --shadow: 0 18px 44px rgba(43, 26, 21, 0.12);
  --shadow-strong: 0 26px 70px rgba(43, 26, 21, 0.18);
  --radius: 8px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

img,
svg {
  display: block;
}

::selection {
  background: var(--caramel);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(234, 216, 191, 0.86);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 48px rgba(43, 26, 21, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 120px;
}

.brand img {
  width: 128px;
  height: 48px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--coffee);
  font-size: 0.9rem;
  font-weight: 800;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.locale-picker select,
.mobile-locale select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  outline: none;
}

.primary-button,
.ghost-button,
.secondary-link,
.price-card button,
.mobile-menu button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.primary-button,
.price-card button,
.mobile-menu button:last-child {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 26px rgba(43, 26, 21, 0.18);
}

.primary-button:hover,
.primary-button:focus-visible,
.price-card button:hover,
.price-card button:focus-visible,
.mobile-menu button:last-child:hover,
.mobile-menu button:last-child:focus-visible {
  background: var(--cocoa);
  transform: translateY(-1px);
}

.primary-button.large {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 1rem;
}

.ghost-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.ghost-button:hover,
.ghost-button:focus-visible {
  border-color: var(--caramel);
  transform: translateY(-1px);
}

.secondary-link {
  border: 1px solid rgba(79, 53, 45, 0.18);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

.secondary-link:hover,
.secondary-link:focus-visible {
  border-color: var(--caramel);
  background: var(--white);
  transform: translateY(-1px);
}

.icon-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--ink);
}

.icon-button svg,
.modal-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mobile-menu {
  position: fixed;
  z-index: 60;
  top: 98px;
  left: 50%;
  width: min(420px, calc(100% - 32px));
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-strong);
  transform: translate(-50%, -12px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mobile-menu a,
.mobile-menu button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(255, 248, 235, 0.72);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
  text-align: left;
}

.mobile-locale {
  display: grid;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
}

.mobile-locale select {
  width: 100%;
  border-radius: var(--radius);
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  background: var(--cream);
}

.mobile-menu button:last-child {
  justify-content: center;
  margin-top: 8px;
  background: var(--ink);
}

.hero-section {
  position: relative;
  min-height: 92vh;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 28px;
  display: grid;
  align-content: end;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 248, 235, 0.95) 0%, rgba(255, 248, 235, 0.8) 48%, rgba(246, 223, 189, 0.62) 100%),
    repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.03) 0 1px, transparent 1px 84px);
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(255, 248, 235, 1), rgba(255, 248, 235, 0));
}

.dashboard-ghost {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  top: 150px;
  width: min(510px, 42vw);
  border: 1px solid rgba(234, 216, 191, 0.86);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
  transform: rotate(1.5deg);
}

.ghost-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.ghost-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--caramel);
}

.ghost-top span:nth-child(2) {
  background: var(--sage);
}

.ghost-top span:nth-child(3) {
  background: var(--coffee);
}

.ghost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ghost-grid div,
.order-orbit {
  border: 1px solid rgba(234, 216, 191, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.ghost-grid div {
  padding: 16px;
}

.ghost-grid small,
.order-orbit span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.ghost-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
  line-height: 1;
}

.ghost-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.ghost-list span {
  height: 38px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(246, 223, 189, 0.9), rgba(255, 255, 255, 0.82));
}

.order-orbit {
  position: absolute;
  min-width: 168px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.order-orbit strong {
  display: block;
  margin-top: 4px;
  font-size: 1.55rem;
  line-height: 1;
}

.orbit-a {
  right: min(45vw, 620px);
  top: 210px;
}

.orbit-b {
  right: max(30px, calc((100vw - 1180px) / 2 + 330px));
  top: 490px;
}

.orbit-c {
  right: max(22px, calc((100vw - 1180px) / 2 + 40px));
  top: 560px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.hero-mark {
  width: fit-content;
  margin: 0 0 18px;
  border: 1px solid rgba(214, 155, 87, 0.38);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--caramel-deep);
  font-size: 0.86rem;
  font-weight: 950;
}

.hero-content h1 {
  margin: 0;
  color: var(--ink);
  font-size: 4.8rem;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--coffee);
  font-size: 1.16rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-proof {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 56px;
}

.hero-proof div {
  min-height: 118px;
  border: 1px solid rgba(234, 216, 191, 0.78);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 12px 28px rgba(43, 26, 21, 0.08);
  backdrop-filter: blur(10px);
}

.hero-proof strong {
  display: block;
  font-size: 2.05rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.intro-strip {
  padding: 36px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--cream);
}

.intro-strip p {
  width: min(940px, 100%);
  margin: 0;
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.34;
  letter-spacing: 0;
}

.premium-system {
  padding-top: 96px;
  padding-bottom: 96px;
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 1), rgba(255, 253, 248, 0.94)),
    linear-gradient(90deg, rgba(123, 145, 116, 0.14), rgba(70, 92, 103, 0.08));
}

.premium-system .section-heading p,
.pricing-section .section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.system-grid article {
  min-height: 230px;
  border: 1px solid rgba(234, 216, 191, 0.9);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 42px rgba(43, 26, 21, 0.08);
}

.system-grid span {
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 950;
}

.system-grid h3 {
  margin: 54px 0 10px;
  font-size: 1.16rem;
}

.system-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.56;
}

.section-block,
.pricing-section,
.premium-system,
.eu-launch-section,
.showcase-section,
.dark-band,
.site-footer {
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
}

.section-block,
.pricing-section,
.premium-system,
.eu-launch-section,
.showcase-section,
.faq-contact {
  scroll-margin-top: 120px;
}

.eu-launch-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--ink);
  color: var(--cream);
}

.eu-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--caramel);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eu-copy h2 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.04;
}

.eu-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 248, 235, 0.72);
  font-size: 1.06rem;
  line-height: 1.7;
}

.eu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.eu-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 248, 235, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 248, 235, 0.08);
  color: var(--cream);
  font-weight: 950;
}

.eu-market-panel {
  border: 1px solid rgba(255, 248, 235, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 248, 235, 0.08);
}

.eu-market-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.eu-market-top strong {
  color: var(--caramel);
  font-size: 3.4rem;
  line-height: 1;
}

.eu-market-top span {
  color: rgba(255, 248, 235, 0.72);
  font-weight: 900;
}

.eu-country-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.eu-country-grid span {
  border: 1px solid rgba(255, 248, 235, 0.12);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 248, 235, 0.08);
  color: rgba(255, 248, 235, 0.84);
  font-size: 0.82rem;
  font-weight: 850;
}

.section-block {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading span,
.dark-band span,
.showcase-copy span,
.contact-panel > span {
  display: block;
  margin-bottom: 12px;
  color: var(--caramel-deep);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.dark-band h2,
.showcase-copy h2,
.contact-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.05rem;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.steps-grid article,
.price-card,
.faq-panel details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(43, 26, 21, 0.07);
}

.feature-card {
  min-height: 320px;
  padding: 22px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--sage-soft);
  color: var(--sage);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.feature-card h3,
.steps-grid h3,
.price-card h3,
.menu-list h4 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.feature-card p,
.steps-grid p,
.price-card p,
.showcase-copy p,
.faq-panel p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-card p {
  margin: 14px 0 0;
}

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
  background:
    linear-gradient(120deg, rgba(18, 11, 9, 0.98), rgba(43, 26, 21, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.06) 0 1px, transparent 1px 80px);
  color: var(--cream);
}

.dark-band h2 {
  color: var(--cream);
}

.dark-band p {
  max-width: 720px;
  color: rgba(255, 248, 235, 0.75);
  font-size: 1.08rem;
}

.dark-band span {
  color: var(--cream-strong);
}

.savings-panel {
  border: 1px solid rgba(246, 223, 189, 0.24);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 248, 235, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.savings-panel p {
  margin: 0;
  color: rgba(255, 248, 235, 0.72);
  font-weight: 800;
}

.savings-panel strong {
  display: block;
  margin: 16px 0;
  color: var(--cream-strong);
  font-size: 3.6rem;
  line-height: 1;
}

.savings-panel span {
  color: rgba(255, 248, 235, 0.82);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.steps-block {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.steps-grid article {
  min-height: 250px;
  padding: 24px;
}

.steps-grid b {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream-strong);
  color: var(--ink);
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--paper);
}

.site-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a100d;
  box-shadow: var(--shadow-strong);
}

.preview-header {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 248, 235, 0.12);
}

.preview-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e07a72;
}

.preview-header span:nth-child(2) {
  background: #e9bd6b;
}

.preview-header span:nth-child(3) {
  background: var(--sage);
}

.preview-header p {
  margin: 0 0 0 auto;
  color: rgba(255, 248, 235, 0.66);
  font-size: 0.82rem;
  font-weight: 850;
}

.restaurant-preview {
  background: var(--white);
}

.preview-hero {
  position: relative;
  min-height: 250px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(43, 26, 21, 0.96), rgba(79, 53, 45, 0.88)),
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.07) 0 1px, transparent 1px 70px);
  color: var(--cream);
}

.preview-hero img {
  width: 118px;
  height: 48px;
  object-fit: contain;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--paper);
}

.preview-hero h3 {
  width: min(360px, 100%);
  margin: 20px 0;
  color: var(--cream);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0;
}

.preview-hero div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.preview-hero span {
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 248, 235, 0.12);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-list {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.menu-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #eee2d2;
  border-radius: var(--radius);
  padding: 12px;
  background: #fffaf2;
}

.food-swatch {
  width: 72px;
  aspect-ratio: 1;
  border-radius: var(--radius);
}

.swatch-caramel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(145deg, #f6dfbd, #d69b57 54%, #9a6140);
}

.swatch-sage {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    linear-gradient(145deg, #edf4ea, #6f8c68 58%, #33462f);
}

.swatch-espresso {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    linear-gradient(145deg, #d69b57, #6f4a3f 52%, #1a100d);
}

.menu-list h4 {
  margin: 0;
  font-size: 1rem;
}

.menu-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

.menu-list strong {
  color: var(--caramel-deep);
  font-size: 0.95rem;
  white-space: nowrap;
}

.showcase-copy {
  max-width: 640px;
}

.showcase-copy p {
  font-size: 1.08rem;
}

.pricing-section {
  padding-top: 96px;
  padding-bottom: 104px;
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 26px;
}

.price-card.highlighted {
  border-color: var(--caramel);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.plan-tag {
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--sage-soft);
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 950;
}

.price-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.price-card > strong {
  display: block;
  margin: 26px 0 18px;
  font-size: 2.3rem;
  line-height: 1;
}

.price-card > strong span {
  color: var(--muted);
  font-size: 0.92rem;
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 164px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--coffee);
  font-weight: 750;
  line-height: 1.45;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage);
}

.price-card button {
  width: 100%;
}

.faq-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 26px;
  background: var(--paper);
}

.faq-panel details {
  margin-top: 12px;
  padding: 18px 20px;
}

.faq-panel summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
}

.faq-panel p {
  margin: 14px 0 0;
}

.contact-panel {
  align-self: start;
  border-radius: var(--radius);
  padding: 32px;
  background:
    linear-gradient(140deg, rgba(43, 26, 21, 0.97), rgba(79, 53, 45, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.05) 0 1px, transparent 1px 76px);
  color: var(--cream);
  box-shadow: var(--shadow-strong);
}

.contact-panel > span {
  color: var(--cream-strong);
}

.contact-panel h2 {
  color: var(--cream);
}

.contact-panel p {
  color: rgba(255, 248, 235, 0.75);
}

.contact-panel a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--cream-strong);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.site-footer img {
  width: 118px;
  height: 46px;
  object-fit: contain;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--coffee);
  font-weight: 850;
}

.site-footer button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 950;
}

.cookie-banner {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 16px;
  width: min(860px, calc(100% - 32px));
  display: none;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-strong);
  transform: translateX(-50%);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.cookie-banner a,
.cookie-banner button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 14px;
  font-weight: 950;
}

.cookie-banner a {
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
}

.cookie-banner button {
  border: 0;
  background: var(--ink);
  color: var(--cream);
}

.auth-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
}

.auth-modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 11, 9, 0.62);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(500px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-strong);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
}

.modal-brand img {
  width: 124px;
  height: 52px;
  object-fit: contain;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 20px 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.auth-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--coffee);
  font-weight: 950;
}

.auth-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--cream);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form.hidden {
  display: none;
}

.auth-form h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.auth-form p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.auth-form input:focus {
  border-color: var(--caramel);
  box-shadow: 0 0 0 4px rgba(214, 155, 87, 0.18);
}

.form-note {
  min-height: 22px;
  color: var(--sage) !important;
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid rgba(214, 155, 87, 0.52);
  outline-offset: 3px;
}

/* Premium visual system: Yumlly marketing site */
body {
  background:
    linear-gradient(180deg, #fffaf1 0%, #f5eadc 44%, #fffdf8 74%, #f4e4cd 100%),
    repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.035) 0 1px, transparent 1px 96px);
}

.site-header {
  border-color: rgba(79, 53, 45, 0.12);
  background: rgba(255, 253, 248, 0.92);
  box-shadow:
    0 22px 70px rgba(43, 26, 21, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  animation: award-header-in 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.desktop-nav {
  gap: 20px;
  letter-spacing: 0;
}

.primary-button,
.price-card button,
.mobile-menu button:last-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08)),
    var(--ink);
  box-shadow:
    0 16px 32px rgba(43, 26, 21, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ghost-button,
.secondary-link,
.locale-picker select {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.hero-section {
  min-height: 100vh;
  align-content: center;
  padding-top: 160px;
  padding-bottom: 42px;
  background:
    linear-gradient(110deg, rgba(255, 250, 241, 0.98) 0 54%, rgba(43, 26, 21, 0.06) 54% 100%),
    linear-gradient(180deg, #fffaf1 0%, #f4e3ca 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.045) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(79, 53, 45, 0.025) 0 1px, transparent 1px 86px);
  opacity: 0.72;
  pointer-events: none;
}

.hero-background::before {
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 253, 248, 0.32) 48% 50%, transparent 50%),
    linear-gradient(180deg, transparent 0 68%, rgba(255, 250, 241, 0.92) 100%);
}

.hero-content {
  filter: drop-shadow(0 18px 36px rgba(43, 26, 21, 0.06));
}

.hero-mark {
  border-color: rgba(214, 155, 87, 0.54);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 10px 28px rgba(214, 155, 87, 0.12);
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7vw, 6.35rem);
  line-height: 0.9;
}

.hero-copy {
  max-width: 690px;
  color: rgba(79, 53, 45, 0.9);
  font-size: 1.12rem;
}

.dashboard-ghost {
  top: 150px;
  width: min(560px, 43vw);
  border-color: rgba(43, 26, 21, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(255, 248, 235, 0.78)),
    var(--paper);
  box-shadow:
    0 34px 90px rgba(43, 26, 21, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transform: rotate(0.75deg);
}

.ghost-top {
  margin: -18px -18px 18px;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  background: linear-gradient(90deg, #1d100d, #3a241d);
}

.ghost-grid div,
.order-orbit,
.hero-proof div,
.system-grid article,
.feature-card,
.steps-grid article,
.price-card,
.faq-panel details {
  border-color: rgba(79, 53, 45, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 242, 0.92)),
    var(--paper);
  box-shadow:
    0 18px 42px rgba(43, 26, 21, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.ghost-list span {
  background:
    linear-gradient(90deg, rgba(214, 155, 87, 0.26), rgba(255, 255, 255, 0.86)),
    linear-gradient(180deg, #fff, #fff7e8);
}

.order-orbit {
  backdrop-filter: blur(16px);
}

.orbit-a {
  top: 184px;
}

.orbit-b {
  top: 512px;
}

.orbit-c {
  top: 600px;
}

.hero-proof {
  margin-top: 68px;
}

.hero-proof div {
  min-height: 132px;
  padding: 24px;
}

.intro-strip {
  background:
    linear-gradient(120deg, #1a0f0c, #39221b 64%, #5a382b),
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.06) 0 1px, transparent 1px 84px);
}

.premium-system,
.pricing-section,
.steps-block {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 235, 0.94)),
    repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.025) 0 1px, transparent 1px 92px);
}

.system-grid article,
.feature-card,
.steps-grid article,
.price-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.system-grid article:hover,
.feature-card:hover,
.steps-grid article:hover,
.price-card:hover {
  border-color: rgba(214, 155, 87, 0.45);
  box-shadow: 0 26px 64px rgba(43, 26, 21, 0.13);
  transform: translateY(-3px);
}

.feature-icon {
  background:
    linear-gradient(135deg, rgba(111, 140, 104, 0.18), rgba(214, 155, 87, 0.12)),
    var(--sage-soft);
}

.dark-band {
  background:
    linear-gradient(120deg, rgba(17, 10, 8, 0.99), rgba(45, 27, 20, 0.98) 58%, rgba(84, 51, 37, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.07) 0 1px, transparent 1px 78px);
}

.savings-panel,
.contact-panel {
  border: 1px solid rgba(246, 223, 189, 0.18);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase-section {
  background:
    linear-gradient(180deg, #fffdf8, #f8ebd7),
    repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.025) 0 1px, transparent 1px 92px);
}

.site-preview {
  border-color: rgba(43, 26, 21, 0.2);
  box-shadow:
    0 34px 90px rgba(43, 26, 21, 0.2),
    0 8px 0 rgba(43, 26, 21, 0.04);
}

.preview-hero {
  isolation: isolate;
  min-height: 292px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(43, 26, 21, 0.92), rgba(43, 26, 21, 0.52)),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
  background-size: cover;
}

.preview-hero::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 164px;
  aspect-ratio: 1.2;
  border: 1px solid rgba(255, 248, 235, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.78), rgba(255, 248, 235, 0.52)),
    url("https://images.unsplash.com/photo-1546069901-ba9599a7e63c?auto=format&fit=crop&w=600&q=80");
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
}

.preview-hero img,
.preview-hero h3,
.preview-hero div {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  align-items: stretch;
}

.price-card.highlighted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 235, 0.96)),
    var(--white);
}

.cookie-banner,
.modal-panel {
  border-color: rgba(79, 53, 45, 0.14);
  box-shadow: 0 30px 84px rgba(43, 26, 21, 0.2);
}

/* Cinematic 3D hero for the main Yumlly landing */
.hero-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  grid-template-areas:
    "copy visual"
    "proof proof";
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding-top: clamp(140px, 15vh, 190px);
  padding-bottom: 34px;
  perspective: 1400px;
  background:
    conic-gradient(from 226deg at 70% 46%, rgba(43, 26, 21, 0.1), rgba(214, 155, 87, 0.24), rgba(255, 250, 241, 0), rgba(111, 140, 104, 0.14), rgba(43, 26, 21, 0.08)),
    linear-gradient(112deg, #fffaf1 0 47%, #f4e2c8 47% 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(43, 26, 21, 0.08) 46% 47%, transparent 47%),
    repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.038) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(79, 53, 45, 0.025) 0 1px, transparent 1px 92px);
  -webkit-mask-image: linear-gradient(180deg, #000 0 84%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0 84%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  grid-area: copy;
  width: min(560px, 42vw);
  max-width: 560px;
  align-self: center;
}

.hero-content h1 {
  max-width: 560px;
  font-size: clamp(4rem, 5.42vw, 5.48rem);
  line-height: 0.88;
}

.hero-copy {
  max-width: 590px;
  font-size: clamp(1.02rem, 1.02vw, 1.18rem);
  line-height: 1.62;
}

.hero-background {
  position: relative;
  grid-area: visual;
  z-index: 2;
  min-height: clamp(460px, 56vh, 650px);
  overflow: visible;
  pointer-events: auto;
}

.hero-background * {
  pointer-events: none;
}

.hero-background::before {
  inset: 7% 2% 6% 4%;
  height: auto;
  border-radius: 38% 62% 54% 46% / 46% 36% 64% 54%;
  background:
    radial-gradient(circle at 46% 42%, rgba(255, 253, 248, 0.76), rgba(255, 248, 235, 0.16) 46%, transparent 68%),
    linear-gradient(135deg, rgba(214, 155, 87, 0.16), rgba(111, 140, 104, 0.1));
  filter: blur(2px);
}

.hero-3d-canvas {
  position: absolute;
  z-index: 1;
  inset: -7% -4% 4% -7%;
  width: 111%;
  height: 104%;
  opacity: 0.96;
  mix-blend-mode: normal;
}

.hero-light-field {
  position: absolute;
  z-index: 0;
  inset: 16% 7% 8% 4%;
  border-radius: 50%;
  background:
    conic-gradient(from 220deg at 50% 50%, rgba(214, 155, 87, 0.2), rgba(255, 253, 248, 0.62), rgba(111, 140, 104, 0.13), rgba(255, 248, 235, 0.1), rgba(214, 155, 87, 0.2));
  filter: blur(16px);
}

.hero-visual-shell {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  z-index: 3;
  inset: 0;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.hero-portal {
  position: absolute;
  z-index: 0;
  inset: 9% 2% 6% 2%;
  border: 1px solid rgba(43, 26, 21, 0.16);
  border-radius: 42% 58% 54% 46% / 48% 44% 56% 52%;
  background:
    conic-gradient(from 28deg, transparent 0 18%, rgba(214, 155, 87, 0.45) 24%, transparent 35% 58%, rgba(111, 140, 104, 0.26) 68%, transparent 82%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.32), rgba(246, 223, 189, 0.1));
  box-shadow:
    0 46px 120px rgba(43, 26, 21, 0.16),
    inset 0 0 72px rgba(255, 253, 248, 0.36);
  transform: translateZ(-140px) rotateX(60deg) rotateZ(-12deg);
  animation: hero-portal-drift 18s ease-in-out infinite;
}

.hero-theater-frame {
  position: absolute;
  z-index: 4;
  inset: 7% 0 4% 0;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  border: 1px solid rgba(43, 26, 21, 0.18);
  border-radius: 28px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.86), rgba(255, 248, 235, 0.66)),
    rgba(255, 253, 248, 0.7);
  box-shadow:
    0 42px 120px rgba(43, 26, 21, 0.22),
    0 10px 0 rgba(43, 26, 21, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  transform: translateZ(112px) rotateY(-13deg) rotateX(6deg) rotateZ(0.4deg);
  transform-origin: 50% 48%;
  transform-style: preserve-3d;
  animation: hero-theater-float 8s ease-in-out infinite;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 520ms ease;
}

.hero-theater-frame::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 22px -18px -22px 24px;
  border: 1px solid rgba(79, 53, 45, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.36), rgba(214, 155, 87, 0.14)),
    rgba(255, 248, 235, 0.32);
  box-shadow: 0 26px 82px rgba(43, 26, 21, 0.12);
  transform: translateZ(-92px) rotateY(12deg) rotateX(-2deg);
}

.hero-background:hover .hero-theater-frame {
  box-shadow:
    0 54px 150px rgba(43, 26, 21, 0.26),
    0 12px 0 rgba(43, 26, 21, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateZ(130px) rotateY(-4deg) rotateX(2deg) translateY(-4px);
}

.hero-theater-frame::after {
  content: "";
  position: absolute;
  inset: 58px 16px 16px;
  z-index: -1;
  border-radius: 24px;
  background:
    linear-gradient(118deg, transparent 0 44%, rgba(214, 155, 87, 0.18) 45% 47%, transparent 48%),
    repeating-linear-gradient(90deg, rgba(43, 26, 21, 0.028) 0 1px, transparent 1px 42px);
  transform: translateZ(-28px);
}

.theater-toolbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 18px;
  padding: 0 14px;
  background: linear-gradient(90deg, #1b0f0c, #3b241d);
  color: var(--cream);
}

.theater-toolbar div {
  display: flex;
  gap: 8px;
}

.theater-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--caramel);
}

.theater-toolbar span:nth-child(2) {
  background: var(--sage);
}

.theater-toolbar span:nth-child(3) {
  background: var(--coffee);
}

.theater-toolbar strong {
  color: rgba(255, 248, 235, 0.72);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theater-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(164px, 0.72fr);
  gap: 14px;
  transform-style: preserve-3d;
}

.theater-main-card,
.theater-side-rail div,
.theater-kpis div {
  border: 1px solid rgba(79, 53, 45, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 242, 0.82)),
    var(--paper);
  box-shadow:
    0 18px 44px rgba(43, 26, 21, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.theater-main-card {
  min-height: 286px;
  display: grid;
  align-content: start;
  gap: 13px;
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
  transform: translateZ(64px) rotateY(2deg);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-background:hover .theater-main-card {
  transform: translateZ(100px) rotateY(0deg) translateY(-2px);
}

.theater-main-card > span,
.theater-side-rail span,
.theater-kpis span {
  color: rgba(79, 53, 45, 0.62);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theater-main-card > strong {
  max-width: 360px;
  color: var(--ink);
  font-size: clamp(1.34rem, 1.75vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.theater-browser {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.theater-browser i {
  height: 36px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(214, 155, 87, 0.68) 0 22%, rgba(255, 255, 255, 0.86) 22%),
    rgba(255, 255, 255, 0.72);
  background-size: 160% 100%;
  animation: theater-line-glide 4.6s ease-in-out infinite;
}

.theater-browser i:nth-child(2) {
  width: 88%;
  animation-delay: -0.8s;
}

.theater-browser i:nth-child(3) {
  width: 74%;
  animation-delay: -1.6s;
}

.theater-browser i:nth-child(4) {
  width: 62%;
  animation-delay: -2.4s;
}

.theater-checkout-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  margin-top: 2px;
  border-radius: 16px;
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(43, 26, 21, 0.96), rgba(79, 53, 45, 0.9));
  color: var(--cream);
}

.theater-checkout-line b {
  font-size: 1.44rem;
  line-height: 1;
}

.theater-checkout-line em {
  color: rgba(255, 248, 235, 0.68);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
}

.theater-side-rail {
  display: grid;
  gap: 14px;
  transform-style: preserve-3d;
}

.theater-side-rail div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-radius: 20px;
  padding: 16px;
  transform: translateZ(22px);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.theater-side-rail div:nth-child(2) {
  transform: translateZ(48px);
}

.theater-side-rail div:nth-child(3) {
  transform: translateZ(30px);
}

.hero-background:hover .theater-side-rail div {
  transform: translateZ(64px) translateX(4px);
}

.hero-background:hover .theater-side-rail div:nth-child(2) {
  transform: translateZ(92px) translateX(9px);
}

.hero-background:hover .theater-side-rail div:nth-child(3) {
  transform: translateZ(72px) translateX(5px);
}

.theater-side-rail strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.08;
}

.theater-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.theater-kpis div {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 7px;
  border-radius: 18px;
  padding: 14px;
}

.theater-kpis strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-depth-ring {
  position: absolute;
  z-index: 0;
  left: 6%;
  top: 12%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(43, 26, 21, 0.16);
  border-radius: 50%;
  background:
    conic-gradient(from 34deg, transparent 0 18%, rgba(214, 155, 87, 0.42) 24%, transparent 34% 58%, rgba(111, 140, 104, 0.28) 66%, transparent 78%),
    radial-gradient(circle, transparent 54%, rgba(255, 253, 248, 0.22) 55% 60%, transparent 61%);
  box-shadow:
    0 36px 90px rgba(43, 26, 21, 0.14),
    inset 0 0 40px rgba(255, 253, 248, 0.42);
  opacity: 0.72;
  transform: translateZ(-90px) rotateX(64deg) rotateZ(0deg);
  animation: hero-ring-spin 22s linear infinite;
}

.hero-depth-ring::before,
.hero-depth-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--caramel);
  box-shadow:
    86px 112px 0 rgba(111, 140, 104, 0.92),
    210px 36px 0 rgba(79, 53, 45, 0.58),
    266px 246px 0 rgba(214, 155, 87, 0.8);
}

.hero-depth-ring::before {
  width: 12px;
  height: 12px;
  left: 18%;
  top: 17%;
}

.hero-depth-ring::after {
  width: 8px;
  height: 8px;
  right: 22%;
  bottom: 20%;
  opacity: 0.72;
}

.hero-slide-stack {
  position: absolute;
  z-index: 2;
  inset: 3% 0 auto auto;
  width: min(520px, 86%);
  height: min(520px, 88%);
  transform-style: preserve-3d;
}

.hero-slide {
  position: absolute;
  width: min(230px, 42%);
  min-height: 150px;
  display: grid;
  gap: 9px;
  align-content: start;
  border: 1px solid rgba(255, 248, 235, 0.22);
  border-radius: 18px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.84), rgba(255, 248, 235, 0.42)),
    rgba(255, 253, 248, 0.44);
  box-shadow:
    0 28px 72px rgba(43, 26, 21, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  animation: hero-slide-float 7s ease-in-out infinite;
}

.hero-slide span {
  color: rgba(79, 53, 45, 0.72);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide strong {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
}

.hero-slide i {
  height: 26px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(214, 155, 87, 0.72) 0 20%, rgba(255, 255, 255, 0.72) 20%),
    rgba(255, 255, 255, 0.56);
}

.hero-slide i:nth-of-type(2) {
  width: 82%;
  opacity: 0.74;
}

.hero-slide i:nth-of-type(3) {
  width: 64%;
  opacity: 0.54;
}

.hero-slide-menu {
  left: 2%;
  top: 11%;
  transform: translateZ(156px) rotateY(18deg) rotateX(4deg) rotateZ(-7deg);
}

.hero-slide-checkout {
  right: 3%;
  top: 0;
  transform: translateZ(124px) rotateY(-16deg) rotateX(8deg) rotateZ(5deg);
  animation-delay: -1.8s;
}

.hero-slide-crm {
  right: 0;
  bottom: 17%;
  transform: translateZ(180px) rotateY(-20deg) rotateX(-2deg) rotateZ(8deg);
  animation-delay: -3.4s;
}

.hero-background:hover .hero-visual-shell {
  --tilt-x: -2deg;
  --tilt-y: 4deg;
}

.hero-background:hover .hero-slide-menu {
  transform: translateZ(190px) rotateY(22deg) rotateX(5deg) rotateZ(-9deg) translate(-10px, -8px);
}

.hero-background:hover .hero-slide-checkout {
  transform: translateZ(158px) rotateY(-20deg) rotateX(9deg) rotateZ(7deg) translate(12px, -10px);
}

.hero-background:hover .hero-slide-crm {
  transform: translateZ(214px) rotateY(-24deg) rotateX(-3deg) rotateZ(10deg) translate(8px, 10px);
}

.hero-product-window {
  position: absolute;
  right: 0;
  top: 20%;
  width: min(560px, 92%);
  padding: 18px;
  transform: translateZ(86px) rotateY(-10deg) rotateX(5deg);
  border-color: rgba(43, 26, 21, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(255, 248, 235, 0.78)),
    var(--paper);
  box-shadow:
    0 38px 100px rgba(43, 26, 21, 0.24),
    0 8px 0 rgba(43, 26, 21, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-product-window .ghost-top b {
  margin-left: auto;
  color: rgba(255, 248, 235, 0.74);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-phone-preview {
  position: absolute;
  left: 2%;
  bottom: 4%;
  width: min(210px, 34%);
  min-height: 320px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(255, 248, 235, 0.34);
  border-radius: 26px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(43, 26, 21, 0.94), rgba(70, 42, 31, 0.9)),
    var(--ink);
  color: var(--cream);
  box-shadow:
    0 34px 76px rgba(43, 26, 21, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateZ(118px) rotateY(11deg) rotateX(-3deg) rotateZ(-3deg);
}

.hero-phone-preview span {
  width: 54px;
  height: 10px;
  border-radius: 999px;
  margin-inline: auto;
  background: rgba(255, 248, 235, 0.18);
}

.hero-phone-preview strong {
  margin: 20px 0 8px;
  font-size: 1.15rem;
}

.hero-phone-preview i {
  height: 48px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(214, 155, 87, 0.74) 0 24%, rgba(255, 248, 235, 0.14) 24%),
    rgba(255, 248, 235, 0.08);
}

.hero-phone-preview i:nth-of-type(2) {
  opacity: 0.72;
}

.hero-phone-preview i:nth-of-type(3) {
  opacity: 0.48;
}

.order-orbit {
  z-index: 4;
  min-width: 162px;
  border-color: rgba(43, 26, 21, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 242, 0.78)),
    var(--paper);
  backdrop-filter: blur(20px);
}

.orbit-a {
  right: 62%;
  top: 18%;
  transform: translateZ(140px) rotate(-2deg);
}

.orbit-b {
  right: 46%;
  top: 61%;
  transform: translateZ(120px) rotate(1deg);
}

.orbit-c {
  right: 5%;
  top: 76%;
  transform: translateZ(110px) rotate(-1deg);
}

.hero-proof {
  grid-area: proof;
  margin-top: clamp(24px, 4vh, 44px);
}

.primary-button,
.ghost-button,
.secondary-link,
.price-card button,
.mobile-menu button,
.eu-actions a {
  --cursor-x: 50%;
  --cursor-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  will-change: transform;
}

.primary-button > *,
.ghost-button > *,
.secondary-link > *,
.price-card button > *,
.mobile-menu button > *,
.eu-actions a > * {
  position: relative;
  z-index: 1;
}

.primary-button::before,
.ghost-button::before,
.secondary-link::before,
.price-card button::before,
.mobile-menu button::before,
.eu-actions a::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(255, 248, 235, 0.46), transparent 36%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.primary-button::after,
.ghost-button::after,
.secondary-link::after,
.price-card button::after,
.mobile-menu button::after,
.eu-actions a::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -140% -42%;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0 36%,
    rgba(255, 248, 235, 0.42) 45%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 248, 235, 0.28) 56%,
    transparent 66% 100%
  );
  opacity: 0;
  transform: translateX(-72%) rotate(12deg);
  transition:
    opacity 220ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.primary-button:hover,
.primary-button:focus-visible,
.price-card button:hover,
.price-card button:focus-visible,
.mobile-menu button:last-child:hover,
.mobile-menu button:last-child:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.04)),
    var(--cocoa);
  box-shadow:
    0 22px 42px rgba(43, 26, 21, 0.28),
    0 0 0 1px rgba(246, 223, 189, 0.18) inset;
  transform: translateY(-3px) scale(1.012);
}

.ghost-button:hover,
.ghost-button:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible,
.eu-actions a:hover,
.eu-actions a:focus-visible {
  border-color: rgba(214, 155, 87, 0.62);
  box-shadow:
    0 14px 34px rgba(43, 26, 21, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-3px);
}

.primary-button:hover::after,
.primary-button:focus-visible::after,
.ghost-button:hover::after,
.ghost-button:focus-visible::after,
.secondary-link:hover::after,
.secondary-link:focus-visible::after,
.price-card button:hover::after,
.price-card button:focus-visible::after,
.mobile-menu button:hover::after,
.mobile-menu button:focus-visible::after,
.eu-actions a:hover::after,
.eu-actions a:focus-visible::after {
  opacity: 1;
  transform: translateX(72%) rotate(12deg);
}

.primary-button:hover::before,
.primary-button:focus-visible::before,
.ghost-button:hover::before,
.ghost-button:focus-visible::before,
.secondary-link:hover::before,
.secondary-link:focus-visible::before,
.price-card button:hover::before,
.price-card button:focus-visible::before,
.mobile-menu button:hover::before,
.mobile-menu button:focus-visible::before,
.eu-actions a:hover::before,
.eu-actions a:focus-visible::before {
  opacity: 1;
}

.primary-button:active,
.ghost-button:active,
.secondary-link:active,
.price-card button:active,
.mobile-menu button:active,
.eu-actions a:active {
  transform: translateY(0) scale(0.985);
}

@keyframes hero-ring-spin {
  from {
    transform: translateZ(-90px) rotateX(64deg) rotateZ(0deg);
  }

  to {
    transform: translateZ(-90px) rotateX(64deg) rotateZ(360deg);
  }
}

@keyframes hero-portal-drift {
  0%,
  100% {
    transform: translateZ(-140px) rotateX(60deg) rotateZ(-12deg) scale(1);
  }

  50% {
    transform: translateZ(-140px) rotateX(60deg) rotateZ(8deg) scale(1.035);
  }
}

@keyframes hero-theater-float {
  0%,
  100% {
    transform: translateZ(112px) rotateY(-13deg) rotateX(6deg) rotateZ(0.4deg) translateY(0);
  }

  50% {
    transform: translateZ(116px) rotateY(-10deg) rotateX(5deg) rotateZ(-0.35deg) translateY(-8px);
  }
}

@keyframes hero-slide-float {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -12px;
  }
}

@keyframes theater-line-glide {
  0%,
  100% {
    background-position: 0 0;
  }

  50% {
    background-position: 100% 0;
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-actions .ghost-button,
  .header-actions > .primary-button {
    display: none;
  }

  .icon-button {
    display: flex;
  }

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

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

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

  .price-card ul {
    min-height: 0;
  }
}

@media (max-width: 920px) {
  .hero-section {
    min-height: auto;
    padding-top: 132px;
  }

  .dashboard-ghost {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 560px);
    margin: 44px 0 0;
    transform: none;
  }

  .hero-background {
    position: relative;
    order: 2;
    min-height: 310px;
  }

  .order-orbit {
    display: none;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 3.3rem;
  }

  .hero-proof,
  .dark-band,
  .showcase-section,
  .eu-launch-section,
  .faq-contact {
    grid-template-columns: 1fr;
  }

  .showcase-section {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding: 9px 10px 9px 14px;
  }

  .brand img {
    width: 112px;
    height: 42px;
  }

  .mobile-menu {
    top: 84px;
    width: calc(100% - 20px);
  }

  .hero-section,
  .section-block,
  .pricing-section,
  .premium-system,
  .eu-launch-section,
  .showcase-section,
  .dark-band,
  .site-footer,
  .intro-strip {
    padding-inline: 18px;
  }

  .hero-section {
    padding-top: 112px;
    padding-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 2.72rem;
    line-height: 1;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-link {
    width: 100%;
  }

  .hero-proof,
  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 28px;
  }

  .intro-strip p {
    font-size: 1.25rem;
  }

  .section-block,
  .pricing-section,
  .premium-system,
  .eu-launch-section,
  .showcase-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .system-grid h3 {
    margin-top: 34px;
  }

  .section-block,
  .pricing-section,
  .premium-system,
  .showcase-section,
  .faq-contact {
    scroll-margin-top: 92px;
  }

  .section-heading h2,
  .dark-band h2,
  .showcase-copy h2,
  .eu-copy h2,
  .contact-panel h2 {
    font-size: 2.22rem;
  }

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

  .feature-card,
  .steps-grid article {
    min-height: auto;
  }

  .menu-list article {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .menu-list strong {
    grid-column: 2;
  }

  .food-swatch {
    width: 64px;
  }

  .preview-hero {
    min-height: 230px;
  }

  .preview-hero h3 {
    font-size: 1.85rem;
  }

  .savings-panel strong {
    font-size: 2.65rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .cookie-banner {
    bottom: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 12px;
    border-radius: 18px;
  }

  .cookie-banner > div {
    grid-column: 1 / -1;
  }

  .cookie-banner strong {
    margin-bottom: 2px;
    font-size: 0.92rem;
  }

  .cookie-banner p {
    font-size: 0.84rem;
    line-height: 1.32;
  }

  .cookie-banner a,
  .cookie-banner button {
    min-height: 40px;
    justify-content: center;
    padding-inline: 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 440px) {
  .hero-content h1 {
    font-size: 2.35rem;
  }

  .primary-button.large {
    padding-inline: 16px;
    font-size: 0.94rem;
  }

  .hero-mark {
    width: 100%;
    text-align: center;
  }

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

  .modal-panel {
    padding: 18px;
  }
}

@media (max-width: 1180px) {
  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "proof";
    gap: 30px;
    padding-top: 132px;
  }

  .hero-content {
    width: min(780px, 100%);
    max-width: 780px;
  }

  .hero-content h1 {
    max-width: 780px;
    font-size: clamp(3.6rem, 9vw, 5.6rem);
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-background {
    position: relative;
    width: min(820px, 100%);
    min-height: clamp(430px, 54vw, 560px);
    margin-inline: auto;
  }

  .hero-slide-stack {
    right: 3%;
    width: min(560px, 82%);
  }

  .hero-theater-frame {
    inset: 5% 4% 4%;
  }

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

@media (max-width: 920px) {
  .hero-section {
    padding-top: 122px;
  }

  .dashboard-ghost,
  .hero-product-window {
    position: absolute;
    right: 0;
    top: 16%;
    width: min(590px, 90%);
    margin: 0;
    transform: translateZ(62px) rotateY(-6deg) rotateX(3deg);
  }

  .hero-slide {
    width: min(205px, 42%);
    min-height: 132px;
    padding: 14px;
  }

  .hero-background {
    order: initial;
    min-height: clamp(390px, 64vw, 520px);
  }

  .hero-theater-frame {
    transform: translateZ(72px) rotateY(-4deg) rotateX(2deg);
  }

  .theater-main-card {
    min-height: 250px;
  }

  .order-orbit {
    display: block;
  }

  .orbit-a {
    right: 54%;
    top: 12%;
  }

  .orbit-b {
    right: 48%;
    top: 62%;
  }

  .orbit-c {
    right: 4%;
    top: 78%;
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding-top: 104px;
    padding-bottom: 24px;
    background:
      linear-gradient(180deg, rgba(255, 250, 241, 0.98) 0%, rgba(246, 223, 189, 0.7) 100%),
      repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.035) 0 1px, transparent 1px 70px);
  }

  .hero-mark {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(2.72rem, 13vw, 3.75rem);
    line-height: 0.94;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.56;
  }

  .hero-background {
    width: 100%;
    min-height: 520px;
  }

  .hero-slide-stack {
    display: none;
  }

  .hero-depth-ring {
    left: 0;
    top: 8%;
    width: 100%;
    opacity: 0.46;
  }

  .hero-portal {
    inset: 14% -4% 10%;
    opacity: 0.55;
  }

  .hero-theater-frame {
    inset: 0;
    gap: 10px;
    border-radius: 24px;
    padding: 12px;
    animation: none;
    transform: none;
  }

  .hero-background:hover .hero-theater-frame {
    transform: none;
  }

  .hero-theater-frame::before {
    display: none;
  }

  .theater-toolbar {
    min-height: 40px;
    border-radius: 16px;
  }

  .theater-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .theater-main-card {
    min-height: 224px;
    border-radius: 20px;
    padding: 15px;
    transform: none;
  }

  .hero-background:hover .theater-main-card {
    transform: none;
  }

  .theater-main-card > strong {
    max-width: none;
    font-size: 1.26rem;
  }

  .theater-browser {
    gap: 8px;
  }

  .theater-browser i {
    height: 30px;
  }

  .theater-checkout-line {
    padding: 12px;
  }

  .theater-side-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .theater-side-rail div,
  .theater-side-rail div:nth-child(2),
  .theater-side-rail div:nth-child(3),
  .hero-background:hover .theater-side-rail div,
  .hero-background:hover .theater-side-rail div:nth-child(2),
  .hero-background:hover .theater-side-rail div:nth-child(3) {
    min-height: 74px;
    padding: 10px;
    transform: none;
  }

  .theater-side-rail span,
  .theater-kpis span {
    font-size: 0.62rem;
  }

  .theater-side-rail strong {
    font-size: 0.78rem;
  }

  .theater-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .theater-kpis div {
    min-height: 62px;
    padding: 10px;
  }

  .theater-kpis strong {
    font-size: 1rem;
  }

  .hero-3d-canvas {
    inset: -5% -16% 2% -16%;
    width: 132%;
  }

  .hero-product-window {
    width: 88%;
    right: 0;
    top: 3%;
    padding: 14px;
    transform: translateZ(42px) rotateY(-3deg) rotateX(2deg);
  }

  .hero-product-window .ghost-top b {
    display: none;
  }

  .hero-phone-preview {
    left: 0;
    bottom: 5%;
    width: min(176px, 43%);
    min-height: 238px;
    border-radius: 22px;
    padding: 13px;
  }

  .hero-phone-preview strong {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .hero-phone-preview i {
    height: 38px;
  }

  .order-orbit {
    min-width: 124px;
    padding: 10px 11px;
  }

  .order-orbit strong {
    font-size: 1.15rem;
  }

  .order-orbit span {
    font-size: 0.66rem;
  }

  .orbit-a {
    right: 46%;
    top: 9%;
  }

  .orbit-b {
    right: auto;
    left: 3%;
    top: 74%;
  }

  .orbit-c {
    right: 3%;
    top: 80%;
  }
}

@media (max-width: 520px) {
  .hero-background {
    min-height: 486px;
  }

  .hero-product-window {
    width: 94%;
    top: 6%;
  }

  .hero-phone-preview {
    width: 39%;
    min-height: 210px;
    opacity: 0.96;
  }

  .order-orbit {
    display: none;
  }

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

  .ghost-grid div:nth-child(2) {
    display: none;
  }

  .theater-kpis {
    display: none;
  }

  .theater-main-card {
    min-height: 232px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-visual-shell,
  .hero-product-window,
  .hero-phone-preview,
  .hero-portal,
  .hero-theater-frame,
  .theater-main-card,
  .theater-side-rail div,
  .theater-browser i,
  .hero-depth-ring,
  .hero-slide,
  .order-orbit {
    animation: none !important;
    transform: none !important;
  }
}

/* Editorial Awwwards-style hero: no 3D in the first viewport */
.hero-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "copy"
    "proof";
  align-content: end;
  align-items: end;
  gap: clamp(24px, 5vh, 56px);
  padding-top: clamp(132px, 16vh, 180px);
  padding-bottom: clamp(28px, 5vh, 52px);
  overflow: hidden;
  isolation: isolate;
  perspective: none;
  background: #fffaf1;
}

.hero-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.98) 0 39%, rgba(255, 250, 241, 0.64) 55%, rgba(43, 26, 21, 0.58) 100%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.04), rgba(255, 250, 241, 0.86) 82%, #fffaf1 100%);
  pointer-events: none;
}

.hero-section::after {
  z-index: 2;
  background:
    repeating-linear-gradient(90deg, rgba(43, 26, 21, 0.05) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(43, 26, 21, 0.026) 0 1px, transparent 1px 96px);
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(180deg, #000 0 86%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0 86%, transparent 100%);
}

.hero-award-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-photo-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 26, 21, 0.02), rgba(43, 26, 21, 0.14)),
    url("https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?auto=format&fit=crop&w=2200&q=86");
  background-position: 66% 50%;
  background-size: cover;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.04);
  animation: hero-photo-breathe 16s ease-in-out infinite;
}

.hero-ink-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 36%, rgba(214, 155, 87, 0.22), transparent 26%),
    linear-gradient(115deg, rgba(255, 250, 241, 0.84) 0 36%, rgba(255, 250, 241, 0.16) 56%, rgba(43, 26, 21, 0.58) 100%);
  mix-blend-mode: normal;
}

.hero-content {
  position: relative;
  z-index: 4;
  grid-area: copy;
  width: min(790px, 100%);
  max-width: 790px;
  align-self: end;
}

.hero-content > * {
  animation: award-copy-in 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content h1 {
  animation-delay: 90ms;
}

.hero-copy {
  animation-delay: 170ms;
}

.hero-actions {
  animation-delay: 240ms;
}

.hero-mark {
  border-color: rgba(214, 155, 87, 0.52);
  background: rgba(255, 253, 248, 0.76);
  backdrop-filter: blur(14px);
}

.hero-content h1 {
  max-width: 790px;
  font-size: clamp(4.55rem, 9vw, 8.9rem);
  line-height: 0.82;
  letter-spacing: -0.015em;
}

.hero-copy {
  max-width: 650px;
  color: rgba(79, 53, 45, 0.94);
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
  line-height: 1.62;
}

.hero-actions {
  margin-top: clamp(24px, 4vh, 36px);
}

.hero-marquee {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 34%;
  width: min(48vw, 740px);
  display: flex;
  gap: 26px;
  white-space: nowrap;
  color: rgba(255, 248, 235, 0.2);
  font-size: clamp(2.2rem, 5.4vw, 6.2rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 0.85;
  text-transform: lowercase;
  opacity: 0.44;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transform: translateX(20%);
  animation: hero-marquee-glide 18s linear infinite;
}

.hero-marquee span {
  flex: 0 0 auto;
}

.hero-flow-dock {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: clamp(206px, 26vh, 286px);
  width: min(360px, 26vw);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 248, 235, 0.28);
  border-radius: 999px;
  padding: 6px;
  background: rgba(43, 26, 21, 0.56);
  color: var(--cream);
  box-shadow: 0 24px 70px rgba(43, 26, 21, 0.28);
  backdrop-filter: blur(20px);
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.hero-flow-dock:hover {
  background: rgba(43, 26, 21, 0.62);
  transform: translateY(-3px);
}

.hero-flow-dock div {
  min-height: 54px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  border-radius: 999px;
}

.hero-flow-dock span {
  color: rgba(255, 248, 235, 0.6);
  font-size: 0.62rem;
  font-weight: 950;
}

.hero-flow-dock strong {
  color: var(--cream);
  font-size: 0.78rem;
  line-height: 1;
}

.hero-proof {
  position: relative;
  z-index: 4;
  grid-area: proof;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(79, 53, 45, 0.14);
  animation: award-proof-in 860ms cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
}

.hero-proof div {
  min-height: 96px;
  border: 0;
  border-right: 1px solid rgba(79, 53, 45, 0.14);
  border-radius: 0;
  padding: 18px 22px 0 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hero-proof div:hover {
  transform: translateY(-3px);
}

.hero-proof div:last-child {
  border-right: 0;
  padding-left: 22px;
}

.hero-proof div:nth-child(2) {
  padding-left: 22px;
}

.hero-proof strong {
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.02em;
}

.hero-proof span {
  max-width: 260px;
  color: rgba(79, 53, 45, 0.76);
  font-size: 0.94rem;
}

@keyframes hero-photo-breathe {
  0%,
  100% {
    transform: scale(1.04);
  }

  50% {
    transform: scale(1.085);
  }
}

@keyframes hero-marquee-glide {
  from {
    transform: translateX(18%);
  }

  to {
    transform: translateX(-46%);
  }
}

@keyframes award-header-in {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes award-copy-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes award-proof-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hero-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "proof";
    align-content: end;
    min-height: 100svh;
    padding-top: 126px;
  }

  .hero-content {
    width: min(790px, 100%);
    max-width: 790px;
  }

  .hero-content h1 {
    max-width: 760px;
    font-size: clamp(4rem, 11vw, 7rem);
  }

  .hero-flow-dock {
    right: 24px;
    width: min(340px, 36vw);
  }
}

@media (max-width: 1020px) {
  .hero-flow-dock {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero-section {
    min-height: 100svh;
    padding-top: 108px;
    padding-bottom: 26px;
  }

  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 241, 0.9) 0 52%, rgba(255, 250, 241, 0.62) 74%, rgba(43, 26, 21, 0.38) 100%),
      linear-gradient(90deg, rgba(255, 250, 241, 0.94), rgba(255, 250, 241, 0.42));
  }

  .hero-photo-layer {
    background-position: 60% 50%;
    opacity: 0.52;
  }

  .hero-content h1 {
    font-size: clamp(3.34rem, 15vw, 5.2rem);
    line-height: 0.88;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-link {
    width: 100%;
  }

  .hero-marquee {
    right: auto;
    left: 18px;
    bottom: 23%;
    width: 140vw;
    color: rgba(79, 53, 45, 0.12);
    opacity: 1;
    font-size: clamp(3.4rem, 20vw, 5.8rem);
    transform: none;
  }

  .hero-flow-dock {
    display: grid;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 22px;
    background: rgba(43, 26, 21, 0.78);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    border-top-color: rgba(79, 53, 45, 0.16);
  }

  .hero-proof div,
  .hero-proof div:nth-child(2),
  .hero-proof div:last-child {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(79, 53, 45, 0.12);
    padding: 14px 0;
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 440px) {
  .hero-content h1 {
    font-size: clamp(3.05rem, 15vw, 4.25rem);
  }

  .hero-mark {
    width: fit-content;
    text-align: left;
  }

  .hero-flow-dock div {
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-layer,
  .hero-marquee,
  .hero-content > *,
  .hero-proof,
  .site-header {
    animation: none !important;
    transform: none !important;
  }
}

/* Full-home award polish: all landing sections, not only hero */
main {
  background:
    radial-gradient(circle at 8% 18%, rgba(214, 155, 87, 0.12), transparent 30%),
    radial-gradient(circle at 88% 54%, rgba(111, 140, 104, 0.1), transparent 26%),
    linear-gradient(180deg, #fffaf1 0%, #fffdf8 34%, #1a100d 34.2%, #1a100d 34.8%, #fffaf1 35%, #fffdf8 100%);
}

main > section:not(.hero-section) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.intro-strip {
  min-height: min(540px, 58svh);
  display: grid;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
  background:
    linear-gradient(92deg, rgba(26, 16, 13, 0.96) 0 42%, rgba(43, 26, 21, 0.72) 68%, rgba(26, 16, 13, 0.58) 100%),
    url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1900&q=84");
  background-position: center;
  background-size: cover;
  color: var(--cream);
}

.intro-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.07) 0 1px, transparent 1px 116px),
    linear-gradient(180deg, transparent 0 78%, rgba(255, 250, 241, 0.16) 100%);
}

.intro-strip::after {
  content: "Yumlly";
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: -0.18em;
  z-index: -1;
  color: rgba(255, 248, 235, 0.08);
  font-size: clamp(7rem, 16vw, 18rem);
  font-weight: 950;
  line-height: 0.76;
  letter-spacing: -0.06em;
  pointer-events: none;
}

.intro-strip p {
  width: min(1110px, 100%);
  color: var(--cream);
  font-size: clamp(3.05rem, 6.4vw, 7.35rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.premium-system {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
  padding-top: clamp(110px, 13vh, 150px);
  padding-bottom: clamp(110px, 13vh, 150px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 248, 235, 0.95)),
    repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.026) 0 1px, transparent 1px 104px);
}

.premium-system::before {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 76px;
  z-index: -1;
  width: min(410px, 34vw);
  aspect-ratio: 0.78;
  border: 1px solid rgba(79, 53, 45, 0.14);
  background:
    linear-gradient(180deg, rgba(43, 26, 21, 0.06), rgba(43, 26, 21, 0.28)),
    url("https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=900&q=84");
  background-position: center;
  background-size: cover;
  box-shadow: 0 42px 96px rgba(43, 26, 21, 0.16);
  opacity: 0.74;
  transform: rotate(2.6deg);
}

.premium-system .section-heading {
  width: min(455px, 100%);
  margin: 0;
  padding-top: 8px;
}

.premium-system .section-heading h2,
.section-block .section-heading h2,
.pricing-section .section-heading h2,
.steps-block .section-heading h2,
.showcase-copy h2,
.contact-panel h2,
.eu-copy h2 {
  letter-spacing: -0.025em;
}

.premium-system .section-heading h2 {
  font-size: clamp(3rem, 4.8vw, 5.45rem);
  line-height: 0.92;
}

.premium-system .section-heading p {
  max-width: 380px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.system-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(245px, auto);
  gap: 18px;
}

.system-grid article {
  position: relative;
  min-height: 268px;
  display: grid;
  align-content: end;
  border-color: rgba(79, 53, 45, 0.14);
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 241, 0.96)),
    var(--paper);
}

.system-grid article::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 155, 87, 0.24), transparent 64%);
  transition:
    transform 240ms ease,
    opacity 240ms ease;
}

.system-grid article:hover::after {
  opacity: 0.86;
  transform: scale(1.12);
}

.system-grid article:nth-child(1) {
  grid-column: span 3;
  min-height: 340px;
  background:
    linear-gradient(140deg, rgba(43, 26, 21, 0.96), rgba(79, 53, 45, 0.9)),
    var(--ink);
  color: var(--cream);
}

.system-grid article:nth-child(2) {
  grid-column: span 3;
  transform: translateY(46px);
}

.system-grid article:nth-child(3) {
  grid-column: span 2;
  min-height: 315px;
}

.system-grid article:nth-child(4) {
  grid-column: span 4;
  min-height: 315px;
  background:
    linear-gradient(118deg, rgba(255, 253, 248, 0.94) 0 62%, rgba(111, 140, 104, 0.16) 62%),
    var(--paper);
}

.system-grid span {
  position: absolute;
  left: 26px;
  top: 24px;
  color: rgba(184, 121, 61, 0.92);
  font-size: 0.86rem;
}

.system-grid article:nth-child(1) span,
.system-grid article:nth-child(1) h3,
.system-grid article:nth-child(1) p {
  color: var(--cream);
}

.system-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: clamp(1.42rem, 2vw, 2.05rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.system-grid p {
  position: relative;
  z-index: 1;
  max-width: 440px;
}

.eu-launch-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 720px;
  padding-top: clamp(110px, 14vh, 160px);
  padding-bottom: clamp(110px, 14vh, 160px);
  background:
    radial-gradient(circle at 72% 42%, rgba(214, 155, 87, 0.18), transparent 34%),
    linear-gradient(135deg, #160c09 0%, #2b1a15 58%, #4f352d 100%);
}

.eu-launch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(255, 248, 235, 0.16) 0 1.5px, transparent 1.7px),
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.05) 0 1px, transparent 1px 96px);
  background-size: 58px 58px, auto;
  opacity: 0.7;
}

.eu-copy h2 {
  max-width: 620px;
  color: var(--cream);
  font-size: clamp(3.2rem, 6vw, 7rem);
  line-height: 0.88;
}

.eu-copy p {
  max-width: 520px;
  margin-top: 24px;
  font-size: 1.12rem;
}

.eu-actions a {
  min-height: 52px;
  padding-inline: 20px;
}

.eu-market-panel {
  position: relative;
  border-color: rgba(255, 248, 235, 0.18);
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.12), rgba(255, 248, 235, 0.06)),
    rgba(255, 248, 235, 0.05);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.eu-market-top {
  align-items: start;
  margin-bottom: 24px;
}

.eu-market-top strong {
  font-size: clamp(5.4rem, 11vw, 9.2rem);
  letter-spacing: -0.07em;
}

.eu-market-top span {
  max-width: 132px;
  padding-top: 14px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eu-country-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.eu-country-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  border-color: rgba(255, 248, 235, 0.14);
  background: rgba(255, 248, 235, 0.08);
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.eu-country-grid span:hover {
  border-color: rgba(214, 155, 87, 0.52);
  background: rgba(255, 248, 235, 0.14);
  transform: translateY(-2px);
}

.section-block#funkcje {
  padding-top: clamp(110px, 13vh, 154px);
  padding-bottom: clamp(110px, 13vh, 154px);
  background:
    linear-gradient(180deg, #fffdf8 0%, #fff8eb 100%),
    repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.026) 0 1px, transparent 1px 106px);
}

.section-block#funkcje .section-heading {
  width: min(980px, 100%);
  margin-bottom: 52px;
}

.section-block#funkcje .section-heading h2 {
  max-width: 960px;
  font-size: clamp(3.05rem, 5.4vw, 6.4rem);
  line-height: 0.9;
}

.feature-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 360px;
  grid-column: span 6;
  display: grid;
  align-content: end;
  border-color: rgba(79, 53, 45, 0.13);
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
}

.feature-card:nth-child(1) {
  grid-column: span 7;
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.28), rgba(26, 16, 13, 0.86)),
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1200&q=84");
  background-position: center;
  background-size: cover;
}

.feature-card:nth-child(2) {
  grid-column: span 5;
  min-height: 460px;
}

.feature-card:nth-child(3) {
  grid-column: span 5;
  background:
    linear-gradient(145deg, rgba(111, 140, 104, 0.22), rgba(255, 253, 248, 0.9)),
    var(--paper);
}

.feature-card:nth-child(4) {
  grid-column: span 7;
  background:
    linear-gradient(135deg, rgba(43, 26, 21, 0.96), rgba(79, 53, 45, 0.92)),
    var(--ink);
}

.feature-card:nth-child(1) .feature-icon,
.feature-card:nth-child(4) .feature-icon {
  background: rgba(255, 248, 235, 0.13);
  color: var(--cream);
}

.feature-card:nth-child(1) h3,
.feature-card:nth-child(1) p,
.feature-card:nth-child(4) h3,
.feature-card:nth-child(4) p {
  color: var(--cream);
}

.feature-card h3 {
  max-width: 520px;
  margin-top: 28px;
  font-size: clamp(1.65rem, 2.3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 600px;
  margin-top: 16px;
  font-size: 1.02rem;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.dark-band {
  min-height: 690px;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 42px;
  padding-top: clamp(110px, 15vh, 170px);
  padding-bottom: clamp(110px, 15vh, 170px);
  background:
    linear-gradient(100deg, rgba(18, 11, 9, 0.96) 0 55%, rgba(18, 11, 9, 0.42) 100%),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1900&q=84");
  background-position: center;
  background-size: cover;
}

.dark-band > div:first-child {
  max-width: 1020px;
}

.dark-band h2 {
  max-width: 1080px;
  font-size: clamp(3.2rem, 7vw, 8.2rem);
  line-height: 0.86;
}

.dark-band p {
  max-width: 520px;
  margin-top: 24px;
  font-size: 1.14rem;
}

.savings-panel {
  width: min(100%, 1000px);
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 1fr);
  align-items: end;
  gap: clamp(22px, 5vw, 58px);
  border-color: rgba(255, 248, 235, 0.2);
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 248, 235, 0.1);
  backdrop-filter: blur(18px);
}

.savings-panel strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--cream-strong);
  font-size: clamp(4rem, 8vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: -0.065em;
  text-align: right;
}

.savings-panel p,
.savings-panel span {
  grid-column: 1;
}

.savings-panel span {
  max-width: 420px;
}

.steps-block {
  padding-top: clamp(110px, 13vh, 154px);
  padding-bottom: clamp(110px, 13vh, 154px);
  background:
    linear-gradient(180deg, #fff8eb 0%, #fffdf8 100%),
    repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.026) 0 1px, transparent 1px 104px);
}

.steps-block .section-heading {
  width: min(880px, 100%);
}

.steps-block .section-heading h2 {
  font-size: clamp(3.05rem, 5vw, 6rem);
  line-height: 0.92;
}

.steps-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(79, 53, 45, 0.15);
}

.steps-grid article {
  min-height: 360px;
  border-width: 0 1px 0 0;
  border-color: rgba(79, 53, 45, 0.15);
  border-radius: 0;
  padding: 34px 24px 20px;
  background: transparent;
  box-shadow: none;
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid article:nth-child(even) {
  padding-top: 92px;
}

.steps-grid b {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(79, 53, 45, 0.14);
  background: var(--ink);
  color: var(--cream);
  font-size: 1.04rem;
}

.steps-grid h3 {
  margin-top: 64px;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  letter-spacing: -0.02em;
}

.steps-grid article:nth-child(even) h3 {
  margin-top: 34px;
}

.showcase-section {
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: 850px;
  padding-top: clamp(110px, 13vh, 160px);
  padding-bottom: clamp(110px, 13vh, 160px);
  background:
    linear-gradient(180deg, #fffdf8, #f7e6cc),
    repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.026) 0 1px, transparent 1px 104px);
}

.showcase-section::before {
  content: "";
  position: absolute;
  left: max(18px, calc((100vw - 1180px) / 2));
  top: 52px;
  z-index: -1;
  width: min(420px, 34vw);
  aspect-ratio: 1.18;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.1), rgba(43, 26, 21, 0.18)),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=900&q=84");
  background-position: center;
  background-size: cover;
  box-shadow: 0 36px 100px rgba(43, 26, 21, 0.16);
  transform: rotate(-3deg);
  opacity: 0.66;
}

.site-preview {
  position: relative;
  border-radius: 22px;
  box-shadow:
    0 54px 130px rgba(43, 26, 21, 0.24),
    0 10px 0 rgba(43, 26, 21, 0.05);
  transform: rotate(-1.25deg);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.site-preview:hover {
  box-shadow:
    0 66px 150px rgba(43, 26, 21, 0.28),
    0 10px 0 rgba(43, 26, 21, 0.05);
  transform: rotate(-0.4deg) translateY(-4px);
}

.preview-header {
  min-height: 60px;
}

.preview-hero {
  min-height: 360px;
  padding: clamp(26px, 4vw, 44px);
}

.preview-hero h3 {
  max-width: 520px;
  margin-top: 48px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.88;
}

.preview-hero::after {
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  width: min(220px, 34%);
  border-radius: 18px;
}

.menu-list {
  padding: 22px;
}

.menu-list article {
  border-radius: 18px;
  padding: 16px;
}

.showcase-copy {
  max-width: 520px;
}

.showcase-copy h2 {
  font-size: clamp(3.05rem, 5vw, 5.8rem);
  line-height: 0.9;
}

.showcase-copy p {
  margin-top: 20px;
  font-size: 1.16rem;
}

.pricing-section {
  padding-top: clamp(110px, 13vh, 154px);
  padding-bottom: clamp(110px, 13vh, 164px);
  background:
    linear-gradient(180deg, #fffaf1 0%, #fffdf8 100%),
    repeating-linear-gradient(90deg, rgba(79, 53, 45, 0.026) 0 1px, transparent 1px 104px);
}

.pricing-section .section-heading.centered {
  width: min(980px, 100%);
  margin-bottom: 54px;
}

.pricing-section .section-heading h2 {
  font-size: clamp(3.05rem, 5.6vw, 6.6rem);
  line-height: 0.9;
}

.pricing-section .section-heading p {
  width: min(700px, 100%);
  margin-inline: auto;
}

.pricing-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(79, 53, 45, 0.14);
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 34px 110px rgba(43, 26, 21, 0.12);
}

.price-card {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  border-width: 0 1px 0 0;
  border-radius: 0;
  padding: clamp(24px, 3vw, 36px);
  background: transparent;
  box-shadow: none;
}

.price-card:last-child {
  border-right: 0;
}

.price-card.highlighted {
  z-index: 1;
  border-color: rgba(214, 155, 87, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.94), rgba(255, 253, 248, 0.98)),
    var(--paper);
  box-shadow: 0 38px 100px rgba(43, 26, 21, 0.18);
  transform: translateY(-24px);
}

.price-card h3 {
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  letter-spacing: -0.03em;
}

.price-card > p {
  min-height: 84px;
}

.price-card > strong {
  margin: 18px 0 26px;
  font-size: clamp(2.7rem, 4.2vw, 4.5rem);
  letter-spacing: -0.05em;
}

.price-card ul {
  flex: 1;
  min-height: 0;
}

.price-card button {
  min-height: 56px;
  margin-top: auto;
  border-radius: 999px;
  white-space: normal;
}

.faq-contact {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-top: clamp(110px, 13vh, 154px);
  padding-bottom: clamp(110px, 13vh, 154px);
  background:
    linear-gradient(135deg, #1a100d 0 48%, #2b1a15 100%),
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.06) 0 1px, transparent 1px 104px);
}

.faq-panel {
  width: min(1060px, 100%);
}

.faq-panel .section-heading {
  width: min(900px, 100%);
}

.faq-panel .section-heading span,
.faq-panel .section-heading h2 {
  color: var(--cream);
}

.faq-panel .section-heading h2 {
  font-size: clamp(3.05rem, 5.4vw, 6.4rem);
  line-height: 0.9;
}

.faq-panel details {
  margin-top: 0;
  border-width: 1px 0 0;
  border-color: rgba(255, 248, 235, 0.14);
  border-radius: 0;
  padding: 24px 0;
  background: transparent;
  box-shadow: none;
}

.faq-panel details:last-of-type {
  border-bottom: 1px solid rgba(255, 248, 235, 0.14);
}

.faq-panel summary {
  color: var(--cream);
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
}

.faq-panel p {
  max-width: 720px;
  color: rgba(255, 248, 235, 0.72);
}

.contact-panel {
  width: min(1060px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-top: 56px;
  border: 1px solid rgba(255, 248, 235, 0.16);
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(118deg, rgba(255, 248, 235, 0.12), rgba(255, 248, 235, 0.04)),
    rgba(255, 248, 235, 0.06);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.25);
}

.contact-panel > span,
.contact-panel h2,
.contact-panel p,
.contact-panel a {
  grid-column: 1;
}

.contact-panel h2 {
  max-width: 600px;
  font-size: clamp(2.6rem, 4.8vw, 5.2rem);
  line-height: 0.9;
}

.contact-panel p {
  max-width: 620px;
}

.contact-panel .primary-button {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
  min-width: 270px;
}

.site-footer {
  border-top-color: rgba(255, 248, 235, 0.12);
  background: #1a100d;
  color: var(--cream);
}

.site-footer nav,
.site-footer p {
  color: rgba(255, 248, 235, 0.76);
}

@supports (animation-timeline: view()) {
  .intro-strip p,
  .premium-system .section-heading,
  .system-grid article,
  .eu-copy,
  .eu-market-panel,
  .section-block#funkcje .section-heading,
  .feature-card,
  .dark-band > div,
  .steps-grid article,
  .site-preview,
  .showcase-copy,
  .price-card,
  .faq-panel,
  .contact-panel {
    animation: section-rise both cubic-bezier(0.22, 1, 0.36, 1);
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }
}

@keyframes section-rise {
  from {
    opacity: 0;
    translate: 0 42px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 1100px) {
  .premium-system,
  .eu-launch-section,
  .showcase-section {
    grid-template-columns: 1fr;
  }

  .premium-system::before,
  .showcase-section::before {
    opacity: 0.28;
    width: min(360px, 48vw);
  }

  .system-grid article:nth-child(n) {
    grid-column: span 3;
    transform: none;
  }

  .feature-card:nth-child(n) {
    grid-column: span 6;
    min-height: 360px;
  }

  .dark-band,
  .showcase-section,
  .eu-launch-section,
  .faq-contact {
    grid-template-columns: 1fr;
  }

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

  .price-card,
  .price-card:last-child {
    min-height: auto;
    border-width: 0 0 1px;
  }

  .price-card.highlighted {
    transform: none;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel .primary-button {
    grid-column: 1;
    grid-row: auto;
    width: fit-content;
  }
}

@media (max-width: 820px) {
  .intro-strip {
    min-height: 430px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .intro-strip p {
    font-size: clamp(2.55rem, 12vw, 4.6rem);
    line-height: 0.96;
  }

  .premium-system,
  .section-block#funkcje,
  .eu-launch-section,
  .dark-band,
  .steps-block,
  .showcase-section,
  .pricing-section,
  .faq-contact {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .premium-system::before,
  .showcase-section::before {
    display: none;
  }

  .premium-system .section-heading h2,
  .section-block#funkcje .section-heading h2,
  .steps-block .section-heading h2,
  .pricing-section .section-heading h2,
  .faq-panel .section-heading h2,
  .eu-copy h2,
  .dark-band h2,
  .showcase-copy h2 {
    font-size: clamp(2.55rem, 11vw, 4.15rem);
    line-height: 0.94;
  }

  .system-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .system-grid article:nth-child(n),
  .feature-card:nth-child(n) {
    grid-column: 1;
    min-height: auto;
  }

  .system-grid article,
  .feature-card {
    min-height: 300px;
  }

  .eu-market-top {
    display: grid;
  }

  .eu-market-top span {
    max-width: none;
    padding-top: 0;
    text-align: left;
  }

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

  .savings-panel {
    grid-template-columns: 1fr;
  }

  .savings-panel strong,
  .savings-panel p,
  .savings-panel span {
    grid-column: 1;
    grid-row: auto;
    text-align: left;
  }

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

  .steps-grid article,
  .steps-grid article:nth-child(even) {
    min-height: auto;
    border-width: 0 0 1px;
    padding: 26px 0;
  }

  .steps-grid article:last-child {
    border-bottom: 0;
  }

  .steps-grid h3,
  .steps-grid article:nth-child(even) h3 {
    margin-top: 30px;
  }

  .site-preview {
    border-radius: 18px;
    transform: none;
  }

  .preview-hero {
    min-height: 285px;
  }

  .preview-hero h3 {
    margin-top: 34px;
  }

  .preview-hero::after {
    opacity: 0.34;
  }

  .contact-panel .primary-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .intro-strip::after {
    right: -12px;
    font-size: 7rem;
  }

  .system-grid article,
  .feature-card,
  .price-card,
  .contact-panel {
    padding: 22px;
  }

  .eu-country-grid {
    grid-template-columns: 1fr;
  }

  .eu-country-grid span {
    min-height: 46px;
  }

  .menu-list article {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .food-swatch {
    width: 56px;
  }

  .menu-list h4,
  .menu-list p {
    overflow-wrap: anywhere;
  }

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-strip p,
  .premium-system .section-heading,
  .system-grid article,
  .eu-copy,
  .eu-market-panel,
  .section-block#funkcje .section-heading,
  .feature-card,
  .dark-band > div,
  .steps-grid article,
  .site-preview,
  .showcase-copy,
  .price-card,
  .faq-panel,
  .contact-panel {
    animation: none !important;
  }
}

/* Compact production consent banner */
.cookie-banner {
  left: auto;
  right: 14px;
  bottom: 14px;
  width: min(470px, calc(100% - 28px));
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  border-radius: 999px;
  padding: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow:
    0 18px 52px rgba(43, 26, 21, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  transform: none;
}

.cookie-banner > div {
  min-width: 0;
  padding-left: 12px;
}

.cookie-banner strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cookie-banner p {
  display: none;
}

.cookie-banner a,
.cookie-banner button {
  min-height: 42px;
  padding-inline: 16px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 10px;
    width: auto;
    grid-template-columns: minmax(0, 1fr) auto auto;
    border-radius: 999px;
    padding: 7px;
  }

  .cookie-banner > div {
    grid-column: auto;
    padding-left: 8px;
  }

  .cookie-banner strong {
    font-size: 0.82rem;
  }

  .cookie-banner a,
  .cookie-banner button {
    min-height: 40px;
    padding-inline: 13px;
  }
}

/* Award candidate direction: cinematic restaurant OS */
body {
  background: #120a08;
}

.site-header {
  background: rgba(255, 253, 248, 0.93);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-section {
  min-height: 100svh;
  color: var(--cream);
  background: #120a08;
}

.hero-section::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 10, 8, 0.94) 0 38%, rgba(18, 10, 8, 0.72) 54%, rgba(18, 10, 8, 0.34) 100%),
    linear-gradient(180deg, rgba(18, 10, 8, 0.16), rgba(18, 10, 8, 0.78) 78%, #120a08 100%);
}

.hero-section::after {
  z-index: 2;
  background:
    radial-gradient(circle at 18% 82%, rgba(214, 155, 87, 0.12), transparent 28%),
    radial-gradient(circle at 78% 38%, rgba(111, 140, 104, 0.12), transparent 26%),
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.06) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(0deg, rgba(255, 248, 235, 0.032) 0 1px, transparent 1px 104px);
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-photo-layer {
  background:
    linear-gradient(90deg, rgba(18, 10, 8, 0.24), rgba(18, 10, 8, 0.08)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2400&q=88");
  background-position: 70% 52%;
  filter: saturate(1.08) contrast(1.12) brightness(0.72);
  opacity: 0.9;
}

.hero-ink-wash {
  background:
    radial-gradient(circle at 66% 38%, rgba(214, 155, 87, 0.18), transparent 28%),
    linear-gradient(106deg, rgba(18, 10, 8, 0.98) 0 36%, rgba(18, 10, 8, 0.7) 57%, rgba(18, 10, 8, 0.22) 100%);
}

.hero-content {
  width: min(980px, 100%);
  max-width: 980px;
}

.hero-mark {
  border-color: rgba(246, 223, 189, 0.38);
  background: rgba(255, 248, 235, 0.08);
  color: var(--cream-strong);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
  max-width: 980px;
  color: var(--cream);
  font-size: clamp(4.65rem, 9.4vw, 10.4rem);
  line-height: 0.78;
  letter-spacing: -0.06em;
  text-shadow: 0 28px 86px rgba(0, 0, 0, 0.38);
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 248, 235, 0.78);
  font-size: 1.15rem;
}

.hero-actions .secondary-link {
  border-color: rgba(255, 248, 235, 0.28);
  background: rgba(255, 248, 235, 0.08);
  color: var(--cream);
}

.hero-actions .primary-button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(214, 155, 87, 0.1)),
    var(--cream);
  color: var(--ink);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.hero-marquee {
  right: auto;
  left: 46%;
  bottom: 18%;
  width: 86vw;
  color: rgba(255, 248, 235, 0.095);
  opacity: 1;
  font-size: clamp(4rem, 10vw, 11rem);
  text-shadow: none;
}

.hero-order-stream {
  position: absolute;
  z-index: 4;
  right: 24px;
  top: clamp(172px, 23vh, 260px);
  width: min(280px, 22vw);
  display: grid;
  gap: 14px;
  color: var(--cream);
}

.stream-ticket {
  border: 1px solid rgba(255, 248, 235, 0.18);
  border-radius: 22px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.12), rgba(255, 248, 235, 0.05)),
    rgba(18, 10, 8, 0.34);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transform-origin: 50% 50%;
  animation: stream-float 7s ease-in-out infinite;
}

.stream-ticket:nth-child(2) {
  width: 88%;
  justify-self: end;
  animation-delay: -2.2s;
}

.stream-ticket:nth-child(3) {
  width: 76%;
  animation-delay: -4.4s;
}

.stream-ticket-primary {
  background:
    linear-gradient(145deg, rgba(246, 223, 189, 0.2), rgba(255, 248, 235, 0.06)),
    rgba(18, 10, 8, 0.42);
}

.stream-ticket span,
.stream-ticket em {
  display: block;
  color: rgba(255, 248, 235, 0.66);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stream-ticket strong {
  display: block;
  margin: 8px 0;
  color: var(--cream-strong);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.hero-proof {
  border-top-color: rgba(255, 248, 235, 0.2);
}

.hero-proof div,
.hero-proof div:nth-child(2),
.hero-proof div:last-child {
  border-right-color: rgba(255, 248, 235, 0.16);
}

.hero-proof strong {
  color: var(--cream);
}

.hero-proof span {
  color: rgba(255, 248, 235, 0.62);
}

@keyframes stream-float {
  0%,
  100% {
    translate: 0 0;
    rotate: -1deg;
  }

  50% {
    translate: 0 -12px;
    rotate: 1deg;
  }
}

.intro-strip {
  min-height: min(620px, 68svh);
  background:
    radial-gradient(circle at 18% 36%, rgba(214, 155, 87, 0.18), transparent 30%),
    linear-gradient(180deg, #fffaf1, #fffdf8);
  color: var(--ink);
}

.intro-strip::before {
  background:
    repeating-linear-gradient(90deg, rgba(43, 26, 21, 0.045) 0 1px, transparent 1px 118px),
    repeating-linear-gradient(0deg, rgba(43, 26, 21, 0.022) 0 1px, transparent 1px 118px);
}

.intro-strip::after {
  content: "0%";
  color: rgba(43, 26, 21, 0.055);
  font-size: clamp(10rem, 24vw, 25rem);
  letter-spacing: -0.1em;
}

.intro-strip p {
  color: var(--ink);
  text-shadow: none;
}

.premium-system {
  min-height: 900px;
  background:
    radial-gradient(circle at 72% 18%, rgba(214, 155, 87, 0.17), transparent 26%),
    radial-gradient(circle at 18% 76%, rgba(111, 140, 104, 0.16), transparent 28%),
    linear-gradient(135deg, #110806 0%, #1a100d 54%, #2b1a15 100%);
  color: var(--cream);
}

.premium-system::before {
  right: max(18px, calc((100vw - 1180px) / 2));
  top: auto;
  bottom: 62px;
  width: min(540px, 38vw);
  opacity: 0.38;
  border-color: rgba(255, 248, 235, 0.16);
  mix-blend-mode: screen;
}

.premium-system .section-heading span,
.premium-system .section-heading h2 {
  color: var(--cream);
}

.premium-system .section-heading p {
  color: rgba(255, 248, 235, 0.68);
}

.system-grid article {
  border-color: rgba(255, 248, 235, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.12), rgba(255, 248, 235, 0.05)),
    rgba(255, 248, 235, 0.06);
  color: var(--cream);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.system-grid article:nth-child(1) {
  background:
    linear-gradient(145deg, rgba(246, 223, 189, 0.22), rgba(255, 248, 235, 0.06)),
    rgba(255, 248, 235, 0.08);
}

.system-grid article:nth-child(2),
.system-grid article:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(111, 140, 104, 0.18), rgba(255, 248, 235, 0.05)),
    rgba(255, 248, 235, 0.06);
}

.system-grid span,
.system-grid h3,
.system-grid p {
  color: var(--cream);
}

.system-grid p {
  color: rgba(255, 248, 235, 0.68);
}

.eu-launch-section {
  background:
    radial-gradient(circle at 74% 28%, rgba(111, 140, 104, 0.14), transparent 24%),
    linear-gradient(180deg, #fffdf8, #fff8eb);
  color: var(--ink);
}

.eu-launch-section::before {
  background-image:
    radial-gradient(circle, rgba(43, 26, 21, 0.08) 0 1.5px, transparent 1.7px),
    repeating-linear-gradient(90deg, rgba(43, 26, 21, 0.03) 0 1px, transparent 1px 96px);
}

.eu-copy span,
.eu-copy h2 {
  color: var(--ink);
}

.eu-copy p {
  color: var(--muted);
}

.eu-actions a {
  border-color: rgba(43, 26, 21, 0.14);
  background: rgba(255, 253, 248, 0.74);
  color: var(--ink);
}

.eu-market-panel {
  border-color: rgba(43, 26, 21, 0.14);
  background:
    linear-gradient(160deg, rgba(43, 26, 21, 0.96), rgba(79, 53, 45, 0.88)),
    var(--ink);
  color: var(--cream);
}

.eu-country-grid span {
  border-color: rgba(255, 248, 235, 0.12);
  background: rgba(255, 248, 235, 0.09);
}

.section-block#funkcje {
  background:
    linear-gradient(180deg, #fffaf1, #fffdf8);
}

.feature-card {
  border-radius: 28px;
}

.feature-card:nth-child(1) {
  min-height: 520px;
}

.feature-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(255, 248, 235, 0.94)),
    var(--paper);
}

.feature-card:nth-child(4) {
  min-height: 420px;
}

.dark-band {
  min-height: 760px;
  background:
    linear-gradient(105deg, rgba(18, 10, 8, 0.98) 0 48%, rgba(18, 10, 8, 0.54) 100%),
    url("https://images.unsplash.com/photo-1551632436-cbf8dd35adfa?auto=format&fit=crop&w=2200&q=86");
  background-position: center;
  background-size: cover;
}

.savings-panel {
  border-radius: 28px;
}

.steps-block {
  background:
    linear-gradient(180deg, #fffdf8, #fff8eb);
}

.steps-grid {
  border-top-color: rgba(43, 26, 21, 0.18);
}

.steps-grid article {
  transition:
    background-color 180ms ease,
    padding-left 180ms ease;
}

.steps-grid article:hover {
  background: rgba(214, 155, 87, 0.08);
  padding-left: 34px;
}

.showcase-section {
  background:
    radial-gradient(circle at 22% 32%, rgba(214, 155, 87, 0.16), transparent 30%),
    linear-gradient(180deg, #fff8eb, #fffdf8);
}

.site-preview {
  border-radius: 30px;
}

.preview-header {
  background: linear-gradient(90deg, #120a08, #2b1a15);
}

.preview-hero {
  background:
    linear-gradient(90deg, rgba(18, 10, 8, 0.9), rgba(18, 10, 8, 0.36)),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1400&q=86");
  background-position: center;
  background-size: cover;
}

.pricing-section {
  background:
    linear-gradient(180deg, #fffdf8, #f6dfbd 180%);
}

.pricing-grid {
  border-radius: 30px;
  overflow: hidden;
}

.price-card.highlighted {
  background:
    linear-gradient(180deg, rgba(43, 26, 21, 0.96), rgba(79, 53, 45, 0.92)),
    var(--ink);
  color: var(--cream);
}

.price-card.highlighted h3,
.price-card.highlighted p,
.price-card.highlighted strong,
.price-card.highlighted li {
  color: var(--cream);
}

.price-card.highlighted > strong span {
  color: rgba(255, 248, 235, 0.62);
}

.price-card.highlighted .plan-tag {
  background: rgba(246, 223, 189, 0.14);
  color: var(--cream-strong);
}

.faq-contact {
  background:
    radial-gradient(circle at 72% 12%, rgba(214, 155, 87, 0.14), transparent 28%),
    linear-gradient(135deg, #100806, #1a100d 46%, #2b1a15);
}

@media (max-width: 1180px) {
  .hero-content h1 {
    font-size: clamp(4rem, 11vw, 7.4rem);
  }

  .hero-order-stream {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-content h1 {
    max-width: 780px;
  }
}

@media (max-width: 820px) {
  .hero-section {
    background: #120a08;
  }

  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(18, 10, 8, 0.84) 0 48%, rgba(18, 10, 8, 0.5) 72%, rgba(18, 10, 8, 0.78) 100%),
      linear-gradient(90deg, rgba(18, 10, 8, 0.82), rgba(18, 10, 8, 0.22));
  }

  .hero-photo-layer {
    background-position: 58% 50%;
    opacity: 0.62;
  }

  .hero-content h1 {
    color: var(--cream);
    font-size: clamp(3.55rem, 15vw, 5.6rem);
    line-height: 0.84;
  }

  .hero-copy {
    color: rgba(255, 248, 235, 0.78);
  }

  .hero-proof {
    border-top-color: rgba(255, 248, 235, 0.18);
  }

  .hero-proof div,
  .hero-proof div:nth-child(2),
  .hero-proof div:last-child {
    border-bottom-color: rgba(255, 248, 235, 0.14);
  }

  .premium-system,
  .eu-launch-section,
  .section-block#funkcje,
  .dark-band,
  .steps-block,
  .showcase-section,
  .pricing-section,
  .faq-contact {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .premium-system {
    min-height: auto;
  }

  .system-grid article,
  .feature-card,
  .price-card,
  .savings-panel,
  .site-preview,
  .pricing-grid {
    border-radius: 22px;
  }

  .price-card.highlighted {
    transform: none;
  }
}

@media (max-width: 560px) {
  .hero-content h1 {
    font-size: clamp(3.18rem, 14.5vw, 4.35rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .intro-strip {
    min-height: 520px;
  }
}

/* Award final pass: full homepage rhythm, template runway, production polish */
.hero-content h1,
.intro-strip p,
.premium-system .section-heading h2,
.section-block .section-heading h2,
.eu-copy h2,
.dark-band h2,
.steps-block .section-heading h2,
.runway-heading h2,
.showcase-copy h2,
.pricing-section .section-heading h2,
.faq-panel .section-heading h2,
.contact-panel h2,
.system-command strong,
.runway-card h3,
.price-card h3,
.price-card > strong {
  letter-spacing: 0;
}

main {
  background: #120a08;
}

.intro-strip {
  min-height: 72svh;
  padding-top: clamp(104px, 13vh, 152px);
  padding-bottom: clamp(104px, 13vh, 152px);
  background:
    linear-gradient(96deg, rgba(18, 10, 8, 0.98) 0 46%, rgba(43, 26, 21, 0.72) 72%, rgba(214, 155, 87, 0.18) 100%),
    url("https://images.unsplash.com/photo-1528605248644-14dd04022da1?auto=format&fit=crop&w=2200&q=88");
  background-position: center;
  background-size: cover;
}

.intro-strip::after {
  content: "zero";
  right: auto;
  left: max(18px, calc((100vw - 1180px) / 2));
  bottom: -0.12em;
  color: rgba(255, 248, 235, 0.06);
  font-size: clamp(8rem, 18vw, 22rem);
  letter-spacing: 0;
}

.intro-strip p {
  width: min(1120px, 100%);
  color: var(--cream);
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.94;
}

.premium-system {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  background:
    linear-gradient(135deg, #100806 0%, #1a100d 46%, #2b1a15 100%);
}

.premium-system::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 248, 235, 0.034) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.72;
}

.system-showcase {
  display: grid;
  gap: 18px;
}

.system-command {
  position: relative;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 248, 235, 0.16);
  border-radius: 30px;
  padding: clamp(18px, 2.2vw, 28px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.14), rgba(255, 248, 235, 0.045)),
    rgba(255, 248, 235, 0.06);
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: var(--cream);
  backdrop-filter: blur(18px);
}

.system-command::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(214, 155, 87, 0.14) 42% 58%, transparent 58% 100%);
  pointer-events: none;
}

.command-top,
.command-metrics,
.command-alert,
.system-command .primary-button {
  position: relative;
  z-index: 1;
}

.command-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 248, 235, 0.12);
  padding-bottom: 16px;
}

.command-top span,
.command-top strong,
.command-alert span,
.command-metrics span {
  color: rgba(255, 248, 235, 0.64);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.command-top strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(111, 140, 104, 0.45);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(111, 140, 104, 0.16);
  color: #dff0d8;
}

.command-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.command-metrics article {
  min-height: 120px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 248, 235, 0.12);
  border-radius: 22px;
  padding: 16px;
  background: rgba(18, 10, 8, 0.28);
}

.command-metrics strong {
  color: var(--cream-strong);
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 0.9;
}

.command-alert {
  border: 1px solid rgba(214, 155, 87, 0.28);
  border-radius: 22px;
  padding: 18px;
  background: rgba(214, 155, 87, 0.12);
}

.command-alert p {
  margin: 8px 0 0;
  color: rgba(255, 248, 235, 0.76);
  line-height: 1.5;
}

.system-command .primary-button {
  width: fit-content;
  min-height: 54px;
  background: var(--cream);
  color: var(--ink);
}

.system-grid {
  grid-auto-rows: minmax(232px, auto);
}

.system-grid article {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.system-grid article:hover {
  border-color: rgba(214, 155, 87, 0.42);
  transform: translateY(-5px);
}

.eu-launch-section {
  background:
    linear-gradient(180deg, #fffdf8 0%, #fff8eb 100%);
}

.eu-launch-section::after {
  content: "EU";
  position: absolute;
  right: max(16px, calc((100vw - 1180px) / 2));
  top: 8%;
  z-index: -1;
  color: rgba(43, 26, 21, 0.045);
  font-size: clamp(10rem, 24vw, 28rem);
  font-weight: 950;
  line-height: 0.78;
}

.section-block#funkcje {
  background:
    linear-gradient(180deg, #fffaf1, #fffdf8);
}

.feature-card {
  box-shadow: 0 26px 86px rgba(43, 26, 21, 0.1);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 106px rgba(43, 26, 21, 0.16);
}

.feature-card:nth-child(2)::after,
.feature-card:nth-child(3)::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(43, 26, 21, 0.1);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(214, 155, 87, 0.12), rgba(111, 140, 104, 0.08)),
    rgba(255, 253, 248, 0.64);
}

.template-runway-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  width: 100%;
  padding: clamp(118px, 14vh, 174px) max(18px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(18, 10, 8, 0.98) 0 44%, rgba(43, 26, 21, 0.9) 70%, rgba(79, 53, 45, 0.82) 100%),
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=2200&q=86");
  background-position: center;
  background-size: cover;
  color: var(--cream);
}

.template-runway-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 248, 235, 0.035) 1px, transparent 1px);
  background-size: 108px 108px;
  opacity: 0.64;
}

.template-runway-section::after {
  content: "templates";
  position: absolute;
  left: max(18px, calc((100vw - 1180px) / 2));
  bottom: -0.16em;
  z-index: -1;
  color: rgba(255, 248, 235, 0.055);
  font-size: clamp(6rem, 13vw, 16rem);
  font-weight: 950;
  line-height: 0.8;
}

.runway-heading {
  position: sticky;
  top: 134px;
  display: grid;
  gap: 22px;
}

.runway-heading span,
.runway-card p {
  color: var(--cream-strong);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.runway-heading h2 {
  max-width: 560px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(3rem, 5.8vw, 6.8rem);
  line-height: 0.88;
}

.runway-heading p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 248, 235, 0.72);
  font-size: 1.1rem;
  line-height: 1.65;
}

.runway-heading .secondary-link {
  width: fit-content;
  border-color: rgba(255, 248, 235, 0.24);
  background: rgba(255, 248, 235, 0.08);
  color: var(--cream);
}

.runway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.runway-card {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 248, 235, 0.16);
  border-radius: 30px;
  padding: 18px;
  overflow: hidden;
  color: var(--cream);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.runway-card:hover {
  border-color: rgba(246, 223, 189, 0.46);
  box-shadow: 0 54px 150px rgba(0, 0, 0, 0.36);
  transform: translateY(-8px);
}

.runway-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: transform 420ms ease;
}

.runway-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 10, 8, 0.56) 0%, rgba(18, 10, 8, 0.18) 44%, rgba(18, 10, 8, 0.9) 100%),
    linear-gradient(120deg, rgba(214, 155, 87, 0.16), transparent 44%);
}

.runway-card:hover::before {
  transform: scale(1.1);
}

.runway-bistro::before {
  background-image: url("https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=1200&q=86");
}

.runway-sushi {
  margin-top: 78px;
}

.runway-sushi::before {
  background-image: url("https://images.unsplash.com/photo-1579584425555-c3ce17fd4351?auto=format&fit=crop&w=1200&q=86");
}

.runway-pizza::before {
  background-image: url("https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1200&q=86");
}

.runway-cafe {
  margin-top: 78px;
}

.runway-cafe::before {
  background-image: url("https://images.unsplash.com/photo-1442512595331-e89e73853f31?auto=format&fit=crop&w=1200&q=86");
}

.runway-browser {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  border: 1px solid rgba(255, 248, 235, 0.2);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(18, 10, 8, 0.38);
  backdrop-filter: blur(14px);
}

.runway-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-strong);
}

.runway-browser span:nth-child(2) {
  background: var(--sage);
}

.runway-browser span:nth-child(3) {
  background: var(--coffee);
}

.runway-card > div:nth-of-type(2) {
  align-self: end;
}

.runway-card h3 {
  max-width: 430px;
  margin: 8px 0 14px;
  color: var(--cream);
  font-size: clamp(2.25rem, 4.4vw, 4.9rem);
  line-height: 0.88;
}

.runway-card div > span {
  display: block;
  max-width: 330px;
  color: rgba(255, 248, 235, 0.76);
  font-size: 1rem;
  line-height: 1.5;
}

.runway-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.runway-card li {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 248, 235, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 248, 235, 0.1);
  backdrop-filter: blur(12px);
}

.runway-card li strong,
.runway-card li em {
  color: var(--cream);
  font-style: normal;
  font-weight: 950;
}

.showcase-section {
  background:
    linear-gradient(180deg, #fffaf1 0%, #fffdf8 100%);
}

.pricing-section {
  position: relative;
}

.price-card {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.price-card:hover {
  border-color: rgba(214, 155, 87, 0.38);
  box-shadow: 0 32px 90px rgba(43, 26, 21, 0.12);
  transform: translateY(-6px);
}

.price-card.highlighted:hover {
  transform: translateY(-30px);
}

.faq-contact {
  background:
    linear-gradient(135deg, rgba(18, 10, 8, 0.98) 0 42%, rgba(43, 26, 21, 0.94) 100%),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=2200&q=84");
  background-position: center;
  background-size: cover;
}

.contact-panel {
  border-radius: 30px;
}

.site-footer {
  padding-top: 54px;
  padding-bottom: 54px;
}

@supports (animation-timeline: view()) {
  .template-runway-section .runway-heading,
  .runway-card,
  .system-command {
    animation: section-rise both cubic-bezier(0.22, 1, 0.36, 1);
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}

@media (max-width: 1100px) {
  .premium-system,
  .template-runway-section {
    grid-template-columns: 1fr;
  }

  .runway-heading {
    position: relative;
    top: auto;
  }
}

@media (max-width: 820px) {
  .intro-strip {
    min-height: 560px;
  }

  .premium-system,
  .template-runway-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .command-metrics,
  .runway-grid {
    grid-template-columns: 1fr;
  }

  .command-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .system-command .primary-button {
    width: 100%;
  }

  .runway-card,
  .runway-sushi,
  .runway-cafe {
    min-height: 440px;
    margin-top: 0;
  }

  .price-card.highlighted:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 560px) {
  .intro-strip p,
  .runway-heading h2 {
    font-size: clamp(2.45rem, 11vw, 4.15rem);
    line-height: 0.98;
  }

  .system-command,
  .runway-card {
    border-radius: 22px;
  }

  .runway-card {
    padding: 14px;
  }

  .runway-card h3 {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .runway-card li {
    border-radius: 18px;
    padding: 10px 12px;
  }
}

/* Top-on-top polish: motion, depth and production-grade responsive details */
.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--caramel), var(--cream-strong));
  box-shadow: 0 0 22px rgba(214, 155, 87, 0.58);
  pointer-events: none;
  transition: width 80ms linear;
}

.site-header {
  transition:
    top 220ms ease,
    width 220ms ease,
    min-height 220ms ease,
    padding 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  width: min(1180px, calc(100% - 28px));
  min-height: 66px;
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.site-header.is-scrolled .brand img {
  width: 118px;
}

.desktop-nav a {
  white-space: nowrap;
}

.hero-section {
  min-height: 104svh;
}

.hero-photo-layer {
  filter: saturate(1.1) contrast(1.14) brightness(0.76);
}

.stream-ticket {
  border-color: rgba(255, 248, 235, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.18), rgba(255, 248, 235, 0.07)),
    rgba(18, 10, 8, 0.46);
}

.stream-ticket span,
.stream-ticket em {
  color: rgba(255, 248, 235, 0.76);
}

.hero-marquee {
  color: rgba(255, 248, 235, 0.065);
}

.intro-strip::after {
  content: "0%";
}

.premium-system::before {
  border-radius: 30px;
  filter: saturate(0.98) contrast(1.05);
}

.system-command {
  transform-style: preserve-3d;
}

.system-command:hover {
  border-color: rgba(246, 223, 189, 0.32);
}

.command-metrics article {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.command-metrics article:hover {
  border-color: rgba(214, 155, 87, 0.36);
  background: rgba(255, 248, 235, 0.08);
  transform: translateY(-3px);
}

.eu-market-panel {
  transform: rotate(1.2deg);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.eu-market-panel:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 46px 120px rgba(43, 26, 21, 0.2);
}

.feature-card:nth-child(2)::after,
.feature-card:nth-child(3)::after {
  width: min(240px, 42%);
  height: 140px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(111, 140, 104, 0.28) 0 22%, transparent 22% 100%),
    linear-gradient(180deg, rgba(43, 26, 21, 0.1) 0 1px, transparent 1px 38px),
    linear-gradient(90deg, rgba(43, 26, 21, 0.08) 0 1px, transparent 1px 54px),
    rgba(255, 253, 248, 0.72);
  box-shadow:
    0 22px 58px rgba(43, 26, 21, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.feature-card:nth-child(2)::before,
.feature-card:nth-child(3)::before {
  content: "";
  position: absolute;
  right: clamp(38px, 5vw, 74px);
  top: 68px;
  z-index: 1;
  width: min(138px, 24%);
  height: 10px;
  border-radius: 999px;
  background: rgba(214, 155, 87, 0.58);
  box-shadow:
    0 26px 0 rgba(43, 26, 21, 0.12),
    0 52px 0 rgba(43, 26, 21, 0.08);
}

.dark-band {
  background-attachment: fixed;
}

.savings-panel {
  transform-style: preserve-3d;
}

.savings-panel:hover {
  border-color: rgba(246, 223, 189, 0.32);
  transform: translateY(-4px);
}

.steps-grid article {
  position: relative;
  overflow: hidden;
}

.steps-grid article::after {
  content: "";
  position: absolute;
  inset: auto 20px 18px auto;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 155, 87, 0.22), transparent 70%);
  opacity: 0;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.steps-grid article:hover::after {
  opacity: 1;
  transform: scale(1.45);
}

.template-runway-section::after {
  content: "Yumlly";
}

.runway-card {
  background: rgba(18, 10, 8, 0.34);
}

.runway-card h3 {
  text-wrap: balance;
}

.site-preview {
  overflow: visible;
}

.restaurant-preview {
  position: relative;
  overflow: hidden;
}

.checkout-drawer {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 3;
  width: min(280px, 42%);
  border: 1px solid rgba(255, 248, 235, 0.52);
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 248, 235, 0.86)),
    var(--paper);
  box-shadow: 0 24px 70px rgba(43, 26, 21, 0.24);
}

.checkout-drawer span,
.checkout-drawer p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.checkout-drawer strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.9;
}

.checkout-drawer p {
  margin: 0 0 14px;
  line-height: 1.4;
}

.checkout-drawer b {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.84rem;
}

.pricing-grid {
  position: relative;
}

.pricing-grid::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(214, 155, 87, 0.08), transparent 34%, rgba(111, 140, 104, 0.08) 68%, transparent);
  pointer-events: none;
}

.price-card {
  position: relative;
}

.price-card::after {
  content: "";
  position: absolute;
  left: clamp(22px, 3vw, 36px);
  right: clamp(22px, 3vw, 36px);
  bottom: 82px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 53, 45, 0.18), transparent);
  pointer-events: none;
}

.price-card.highlighted::after {
  background: linear-gradient(90deg, transparent, rgba(255, 248, 235, 0.2), transparent);
}

.faq-panel details {
  transition:
    border-color 180ms ease,
    padding-left 180ms ease;
}

.faq-panel details:hover {
  border-color: rgba(246, 223, 189, 0.34);
  padding-left: 18px;
}

.contact-panel {
  overflow: hidden;
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -46%;
  width: min(520px, 48vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 155, 87, 0.2), transparent 68%);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .site-header.is-scrolled {
    width: min(980px, calc(100% - 24px));
  }

  .eu-market-panel {
    transform: none;
  }

  .checkout-drawer {
    width: min(310px, 52%);
  }
}

@media (max-width: 820px) {
  .scroll-progress {
    height: 2px;
  }

  .site-header.is-scrolled {
    top: 10px;
    width: calc(100% - 20px);
  }

  .dark-band {
    background-attachment: scroll;
  }

  .feature-card:nth-child(2)::after,
  .feature-card:nth-child(3)::after,
  .feature-card:nth-child(2)::before,
  .feature-card:nth-child(3)::before {
    display: none;
  }

  .checkout-drawer {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -10px auto 16px;
  }

  .price-card::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-section {
    min-height: 100svh;
  }

  .checkout-drawer {
    border-radius: 20px;
    padding: 14px;
  }

  .checkout-drawer b {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .stream-ticket,
  .command-metrics article,
  .eu-market-panel,
  .feature-card,
  .savings-panel,
  .runway-card,
  .site-preview,
  .price-card,
  .faq-panel details {
    transition: none !important;
  }

  .dark-band {
    background-attachment: scroll;
  }
}

/* Final polish: premium motion, touch-safe hover states and full-page rhythm */
.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--caramel), transparent);
  opacity: 0;
  scale: 0.35 1;
  transition:
    opacity 180ms ease,
    scale 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  scale: 1 1;
}

:is(.primary-button, .ghost-button, .secondary-link, .price-card button, .eu-actions a, .cookie-banner a, .cookie-banner button) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

:is(.primary-button, .ghost-button, .secondary-link, .price-card button, .eu-actions a, .cookie-banner a, .cookie-banner button)::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 0 35%, rgba(255, 248, 235, 0.55) 45%, transparent 58% 100%);
  translate: -120% 0;
  transition: translate 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

:is(.primary-button, .ghost-button, .secondary-link, .price-card button, .eu-actions a, .cookie-banner a, .cookie-banner button):hover::before,
:is(.primary-button, .ghost-button, .secondary-link, .price-card button, .eu-actions a, .cookie-banner a, .cookie-banner button):focus-visible::before {
  translate: 120% 0;
}

:is(.primary-button, .ghost-button, .secondary-link, .price-card button, .eu-actions a):focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(214, 155, 87, 0.42);
  outline-offset: 4px;
}

.site-header {
  transition:
    width 220ms ease,
    top 220ms ease,
    min-height 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 30%, rgba(214, 155, 87, 0.12) 72%, transparent);
  pointer-events: none;
}

.stream-ticket,
.command-metrics article,
.eu-country-grid span,
.feature-card,
.savings-panel,
.steps-grid article,
.runway-card,
.site-preview,
.price-card,
.faq-panel details,
.contact-panel {
  backface-visibility: hidden;
}

.command-metrics article {
  position: relative;
  overflow: hidden;
}

.price-card::before,
.command-metrics article::before,
.steps-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 18% 12%, rgba(255, 248, 235, 0.24), transparent 32%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.price-card:hover::before,
.command-metrics article:hover::before,
.steps-grid article:hover::before {
  opacity: 1;
}

.price-card > *,
.command-metrics article > *,
.steps-grid article > * {
  position: relative;
  z-index: 1;
}

.pricing-grid:hover .price-card:not(:hover) {
  opacity: 0.9;
}

.price-card {
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card.highlighted:hover {
  transform: translateY(-30px);
}

.faq-panel details[open] summary {
  color: var(--cream-strong);
}

.faq-panel summary {
  list-style: none;
}

.faq-panel summary::-webkit-details-marker {
  display: none;
}

.faq-panel summary::after {
  content: "+";
  float: right;
  color: var(--cream-strong);
  font-weight: 950;
  transition: rotate 160ms ease;
}

.faq-panel details[open] summary::after {
  rotate: 45deg;
}

.site-footer a {
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cream-strong);
  opacity: 1;
}

@media (hover: none) {
  .pricing-grid:hover .price-card:not(:hover) {
    opacity: 1;
  }

  .feature-card:hover,
  .price-card:hover,
  .price-card.highlighted:hover,
  .runway-card:hover,
  .site-preview:hover {
    transform: none;
  }
}

@media (max-width: 820px) {
  .faq-panel summary::after {
    float: none;
    margin-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(.primary-button, .ghost-button, .secondary-link, .price-card button, .eu-actions a, .cookie-banner a, .cookie-banner button)::before,
  .desktop-nav a::after,
  .price-card::before,
  .command-metrics article::before,
  .steps-grid article::before {
    transition: none !important;
  }
}

/* Commission calculator added to the existing production homepage */
.savings-calculator {
  width: min(100%, 760px);
  scroll-margin-top: 140px;
  display: block;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.savings-calculator:hover {
  transform: translateY(-4px);
}

.savings-calculator-top {
  padding: clamp(24px, 4vw, 40px);
  border-bottom: 1px solid rgba(43, 26, 21, 0.12);
  background:
    radial-gradient(circle at 76% 18%, rgba(214, 155, 87, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 248, 235, 0.96), rgba(255, 253, 248, 0.84));
}

.savings-calculator-top strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-align: left;
}

.savings-calculator-top span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 950;
  line-height: 1.28;
  text-transform: none;
}

.savings-calculator-fields {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.86);
}

.savings-calculator-fields label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 950;
  line-height: 1.3;
}

.savings-calculator-fields input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(43, 26, 21, 0.16);
  border-radius: 14px;
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.savings-calculator-fields input:focus {
  border-color: var(--caramel);
  box-shadow: 0 0 0 4px rgba(214, 155, 87, 0.18);
}

.savings-calculator-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(43, 26, 21, 0.12);
  background: rgba(255, 253, 248, 0.98);
}

.savings-calculator-results article {
  min-height: 148px;
  padding: clamp(20px, 3vw, 30px);
}

.savings-calculator-results article + article {
  border-left: 1px solid rgba(43, 26, 21, 0.12);
}

.savings-calculator-results span {
  display: block;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.3;
  text-transform: none;
}

.savings-calculator-results strong {
  display: block;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.3vw, 3.25rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-align: left;
}

@media (max-width: 820px) {
  .savings-calculator {
    width: 100%;
  }

  .savings-calculator-results {
    grid-template-columns: 1fr;
  }

  .savings-calculator-results article + article {
    border-top: 1px solid rgba(43, 26, 21, 0.12);
    border-left: 0;
  }
}
