:root {
  --forest: #222e22;
  --deep: #101a14;
  --lime: #e2f486;
  --paper: #f8f7f2;
  --ink: #172019;
  --violet: #9677d8;
  --line: rgba(248, 247, 242, .2);
}

* { box-sizing: border-box; }
html { background: var(--forest); }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  background: var(--forest);
  font-family: "Satoshi", "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 100; padding: 12px 18px; border-radius: 8px; background: var(--lime); color: var(--ink); }
.skip-link:focus { top: 20px; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 22px;
  left: 50%;
  width: min(calc(100% - 44px), 1380px);
  min-height: 70px;
  padding: 9px 10px 9px 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  background: rgba(248,247,242,.94);
  box-shadow: 0 18px 48px rgba(9,22,13,.16);
  backdrop-filter: blur(14px);
}
.brand img { width: 155px; height: auto; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switch { display: flex; gap: 4px; padding: 4px; border: 1px solid rgba(34,46,34,.16); border-radius: 999px; background: rgba(255,255,255,.55); }
.language-switch button { width: 30px; height: 30px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: #606861; font: inherit; font-size: .66rem; font-weight: 800; cursor: pointer; }
.language-switch button[aria-pressed="true"] { color: var(--forest); background: var(--lime); box-shadow: 0 0 0 1px var(--forest); }
.home-link, .primary-button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; text-decoration: none; font-weight: 800; }
.home-link::after, .primary-button::after { content: "↗"; }
.home-link { min-height: 50px; padding: 0 22px; border-radius: 999px; color: var(--ink); background: var(--lime); }

.confirmation {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  background: var(--deep);
}
.copy-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px max(6vw, calc((100vw - 1380px) / 2)) 80px;
  overflow: hidden;
}
.copy-panel::after {
  content: "";
  position: absolute;
  right: -16vw;
  bottom: -37vw;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(226,244,134,.25);
  border-radius: 50%;
}
.confirmation-mark { width: 60px; height: 60px; margin-bottom: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); box-shadow: 0 0 0 10px rgba(226,244,134,.08); }
.confirmation-mark span { font-size: 1.7rem; font-weight: 800; }
.eyebrow { margin: 0 0 22px; color: var(--lime); text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 800; }
h1 { max-width: 790px; margin: 0 0 28px; font-size: clamp(3.35rem, 6.25vw, 6.7rem); line-height: .94; letter-spacing: -.06em; }
h1 span, h1 em { display: block; }
h1 em { color: var(--lime); font-style: normal; }
.lead { max-width: 680px; margin: 0 0 36px; color: rgba(248,247,242,.76); font-size: clamp(1.05rem, 1.45vw, 1.32rem); }
.meeting-note { max-width: 700px; margin: 0 0 36px; padding: 24px 0; display: grid; grid-template-columns: 50px 1fr; gap: 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.note-number { color: var(--lime); font-size: .78rem; font-weight: 800; letter-spacing: .14em; }
.meeting-note h2 { margin: 0 0 7px; font-size: 1.18rem; letter-spacing: -.02em; }
.meeting-note p { margin: 0; color: rgba(248,247,242,.68); }
.primary-button { position: relative; z-index: 2; width: fit-content; min-height: 56px; padding: 0 26px; border-radius: 999px; color: var(--ink); background: var(--lime); transition: transform .2s ease, box-shadow .2s ease; }
.primary-button:hover, .primary-button:focus-visible, .home-link:hover, .home-link:focus-visible { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(226,244,134,.2); }

.visual-panel { position: relative; min-height: 100%; margin: 0; overflow: hidden; background: var(--forest); }
.visual-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,26,20,.26), transparent 30%), linear-gradient(0deg, rgba(16,26,20,.5), transparent 40%); }
.visual-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.visual-panel figcaption { position: absolute; z-index: 2; right: 32px; bottom: 32px; padding: 12px 18px; border-radius: 999px; color: var(--ink); background: var(--lime); font-size: .82rem; font-weight: 800; }

footer { min-height: 76px; padding: 14px max(5vw, calc((100vw - 1380px) / 2)); display: flex; align-items: center; justify-content: space-between; background: var(--paper); color: var(--ink); }
footer p { margin: 0; font-size: .82rem; font-weight: 600; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(34,46,34,.2); border-radius: 50%; transition: background .2s ease; }
.social-links a:hover, .social-links a:focus-visible { background: var(--lime); }
.social-links svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-links .fill, .social-links .linkedin { fill: currentColor; stroke: none; }

@media (max-width: 980px) {
  .confirmation { grid-template-columns: 1fr; }
  .copy-panel { min-height: 780px; padding: 150px 34px 72px; }
  .visual-panel { min-height: 620px; }
}

@media (max-width: 620px) {
  .site-header { top: 14px; width: calc(100% - 28px); min-height: 62px; padding: 8px 8px 8px 18px; }
  .brand img { width: 130px; }
  .home-link { display: none; }
  .copy-panel { min-height: auto; padding: 122px 22px 58px; }
  .confirmation-mark { width: 52px; height: 52px; margin-bottom: 24px; }
  h1 { font-size: clamp(3rem, 15vw, 4.45rem); }
  .meeting-note { grid-template-columns: 38px 1fr; gap: 10px; }
  .visual-panel { min-height: 480px; }
  .visual-panel figcaption { right: 18px; bottom: 18px; }
  footer { padding: 18px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
