@import url("https://fonts.googleapis.com/css2?family=Geist:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --background: #fafafa;
  --surface: #ffffff;
  --soft-surface: #f4f4f5;
  --primary: #4f46e5;
  --accent: #0ea5e9;
  --text: #0f172a;
  --muted: #526174;
  --border: rgba(15, 23, 42, 0.08);
  --ring: rgba(79, 70, 229, 0.28);
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 14px 40px rgba(15, 23, 42, 0.06);
  --radius-card: 24px;
  --radius-control: 16px;
  --max: 1280px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 4%, rgba(79, 70, 229, 0.1), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(14, 165, 233, 0.1), transparent 28%),
    var(--background);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 1px 0 rgba(79, 70, 229, 0.12) inset,
    0 18px 50px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(79, 70, 229, 0.04);
  backdrop-filter: blur(30px) saturate(165%);
  -webkit-backdrop-filter: blur(30px) saturate(165%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: Geist, Inter, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.admin-link {
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus {
  background: rgba(79, 70, 229, 0.07);
  color: var(--text);
}

.nav-toggle {
  display: none;
}

.section-band,
.content-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 74px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  min-height: min(720px, calc(100svh - 112px));
  padding-bottom: clamp(32px, 4.8vw, 58px);
}

.hero + .content-section {
  padding-top: clamp(34px, 4.8vw, 58px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: Geist, Inter, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 7vw, 6.8rem);
  font-weight: 800;
}

h2 {
  max-width: 840px;
  font-size: clamp(2.35rem, 4.2vw, 4.6rem);
  font-weight: 800;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero-text,
.section-heading p,
.split p,
.trust-panel p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions,
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  padding: 13px 20px;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  touch-action: manipulation;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: rgba(79, 70, 229, 0.18);
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: #fff;
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.button.ghost {
  background: transparent;
  color: var(--muted);
}

.button-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
}

.grid-icon {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 5h5v5H5V5Zm9 0h5v5h-5V5ZM5 14h5v5H5v-5Zm9 0h5v5h-5v-5Z' fill='%23000'/%3E%3C/svg%3E");
}

.mail-icon {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16v12H4V6Zm2.2 2 5.8 4.1L17.8 8H6.2Zm11.8 8v-5.7l-6 4.2-6-4.2V16h12Z' fill='%23000'/%3E%3C/svg%3E");
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.readiness-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.panel-label {
  color: var(--text);
  font-family: Geist, Inter, sans-serif;
  font-weight: 700;
}

.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px 20px;
  border-bottom: 1px solid var(--border);
}

.live-dot {
  color: #059669;
  font-size: 0.84rem;
  font-weight: 700;
}

.live-dot::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #10b981;
  content: "";
}

.preview-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
}

.preview-row strong,
.preview-row small {
  display: block;
}

.preview-row small {
  color: var(--muted);
}

.preview-activity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 28px;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(14, 165, 233, 0.05)),
    rgba(255, 255, 255, 0.72);
}

.preview-activity span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.preview-activity strong {
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  padding: 6px 10px;
  font-size: 0.78rem;
}

.preview-row > span:last-child,
.pill {
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.preview-icon,
.project-logo,
.service-icon,
.about-mark {
  display: grid;
  place-items: center;
  color: var(--primary);
}

.preview-icon,
.project-logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(14, 165, 233, 0.1));
  font-weight: 800;
}

.preview-icon.coral {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(79, 70, 229, 0.08));
  color: var(--accent);
}

.preview-icon.lemon {
  background: var(--soft-surface);
  color: var(--text);
}

.preview-icon::before,
.building-icon::before,
.service-icon::before {
  display: block;
  width: 28px;
  height: 28px;
  background: currentColor;
  content: "";
  mask: var(--preview-icon) center / contain no-repeat;
}

.dish-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 20a9 9 0 0 1 18 0H7Zm-2 3h22v3H5v-3Zm10-15h2v4h-2V8Zm-5.7 2.4 1.4-1.4 2.8 2.8-1.4 1.4-2.8-2.8Zm13 1.4 2.8-2.8 1.4 1.4-2.8 2.8-1.4-1.4Z' fill='%23000'/%3E%3C/svg%3E");
}

.math-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6h16v3H14.7l7.9 7-7.9 7H25v3H9v-3l8.8-7L9 9V6Z' fill='%23000'/%3E%3C/svg%3E");
}

.leaf-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 5C12 5 6 12 7 25c13 1 20-5 20-18 0-1.1-.9-2-2-2Zm-3.5 6.5L10 23l-1.5-1.5L20 10l1.5 1.5Z' fill='%23000'/%3E%3C/svg%3E");
}

.privacy-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 4 6 8v7c0 6 4 10.5 10 13 6-2.5 10-7 10-13V8L16 4Zm0 5 6 2.4V15c0 4-2.2 7-6 9-3.8-2-6-5-6-9v-3.6L16 9Z' fill='%23000'/%3E%3C/svg%3E");
}

.terms-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5h12l4 4v18H8V5Zm10 2v4h4l-4-4Zm-6 9h8v2h-8v-2Zm0 5h10v2H12v-2Zm0-10h4v2h-4v-2Z' fill='%23000'/%3E%3C/svg%3E");
}

.refund-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 6a10 10 0 1 1-8.7 15H5l3.5-4 3.5 4H9.7A7 7 0 1 0 16 9V6Zm-1 5h2v4h4v2h-6v-6Z' fill='%23000'/%3E%3C/svg%3E");
}

.delivery-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8h22v16H5V8Zm3 3v10h16V11H8Zm4 3h8v2h-8v-2Zm0 4h5v2h-5v-2Z' fill='%23000'/%3E%3C/svg%3E");
}

.cancel-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 4a12 12 0 1 0 0 24 12 12 0 0 0 0-24Zm0 3a9 9 0 0 1 6.4 15.4L9.6 9.6A9 9 0 0 1 16 7ZM7 16c0-1.5.4-3 1.1-4.2l12.1 12.1A9 9 0 0 1 7 16Z' fill='%23000'/%3E%3C/svg%3E");
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

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

.project-card,
.service-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 390px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.18);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.11);
}

.project-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.project-card p,
.service-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.project-mockup {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 146px;
  margin-top: 4px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(244, 244, 245, 0.7)),
    var(--soft-surface);
}

.project-mockup::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent),
    radial-gradient(circle at 82% 20%, rgba(14, 165, 233, 0.16), transparent 30%);
  content: "";
  opacity: 0.7;
}

.project-mockup > * {
  position: relative;
  z-index: 1;
}

.project-screenshot {
  aspect-ratio: 16 / 10;
  min-height: 0;
  place-items: center;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(14, 165, 233, 0.05)),
    #eef2ff;
}

.project-screenshot::before {
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 58%, rgba(15, 23, 42, 0.2)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0.45;
  pointer-events: none;
}

.project-screenshot img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  filter: saturate(0.96) contrast(1.02);
}

.mock-top {
  display: flex;
  gap: 6px;
}

.mock-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.18);
}

.mock-question {
  display: grid;
  gap: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  padding: 14px;
}

.mock-question strong {
  color: var(--text);
  font-family: Geist, Inter, sans-serif;
  font-size: 1.05rem;
}

.mock-question span,
.mock-options span,
.dish-search,
.dish-list span,
.workflow-rail span,
.workflow-main span {
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
}

.mock-question span {
  width: 72%;
  height: 8px;
}

.mock-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mock-options span {
  height: 34px;
  background: rgba(79, 70, 229, 0.12);
}

.mock-options span:nth-child(2) {
  background: rgba(16, 185, 129, 0.22);
}

.dish-preview {
  grid-template-columns: 1fr 92px;
}

.dish-search {
  grid-column: 1 / -1;
  height: 28px;
  background: rgba(15, 23, 42, 0.1);
}

.dish-list {
  display: grid;
  align-content: center;
  gap: 10px;
}

.dish-list span {
  height: 12px;
}

.dish-list span:nth-child(1) {
  width: 86%;
}

.dish-list span:nth-child(2) {
  width: 62%;
}

.dish-list span:nth-child(3) {
  width: 74%;
}

.dish-photo {
  min-height: 84px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.8) 0 12%, transparent 13%),
    radial-gradient(circle at 62% 58%, rgba(15, 23, 42, 0.18) 0 10%, transparent 11%),
    linear-gradient(135deg, rgba(14, 165, 233, 0.24), rgba(79, 70, 229, 0.14));
}

.workflow-preview {
  grid-template-columns: 44px 1fr;
}

.workflow-rail,
.workflow-main {
  display: grid;
  gap: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  padding: 12px;
}

.workflow-rail span {
  width: 20px;
  height: 20px;
  background: rgba(79, 70, 229, 0.18);
}

.workflow-main span {
  height: 12px;
}

.workflow-main span:nth-child(1) {
  width: 48%;
  background: rgba(79, 70, 229, 0.24);
}

.workflow-main span:nth-child(2) {
  width: 88%;
}

.workflow-main span:nth-child(3) {
  width: 72%;
}

.workflow-main span:nth-child(4) {
  width: 58%;
  background: rgba(14, 165, 233, 0.16);
}

.project-card .button {
  align-self: end;
  width: fit-content;
}

.split {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-mark {
  width: 84px;
  height: 84px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(14, 165, 233, 0.12));
}

.building-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 27h18v-2h-2V6H9v19H7v2Zm5-17h3v3h-3v-3Zm5 0h3v3h-3v-3Zm-5 6h3v3h-3v-3Zm5 0h3v3h-3v-3Zm-3 6h4v3h-4v-3Z' fill='%23000'/%3E%3C/svg%3E");
}

.business-card,
.admin-card,
.policy-content,
.trust-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.business-card {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px 22px;
  box-shadow: none;
}

.business-card div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.business-card div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 700;
}

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

.service-card {
  min-height: 250px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(79, 70, 229, 0.08);
}

.ai-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3 18.8 11.2 27 14l-8.2 2.8L16 25l-2.8-8.2L5 14l8.2-2.8L16 3Zm9 17 1.2 3.8L30 25l-3.8 1.2L25 30l-1.2-3.8L20 25l3.8-1.2L25 20Z' fill='%23000'/%3E%3C/svg%3E");
}

.code-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m11 10-6 6 6 6 2-2-4-4 4-4-2-2Zm10 0-2 2 4 4-4 4 2 2 6-6-6-6Zm-3.5-2-5 16 3 0 5-16h-3Z' fill='%23000'/%3E%3C/svg%3E");
}

.design-icon {
  --preview-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 6h18v4H7V6Zm0 7h9v13H7V13Zm12 0h6v5h-6v-5Zm0 8h6v5h-6v-5Z' fill='%23000'/%3E%3C/svg%3E");
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(14, 165, 233, 0.05)),
    var(--surface);
}

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

.trust-list span {
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  padding: 14px 16px;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.contact-note {
  display: grid;
  gap: 6px;
  grid-column: 1 / -1;
  margin: 2px 2px 8px;
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(14, 165, 233, 0.06));
  padding: 18px 20px;
}

.contact-cta {
  width: fit-content;
  margin-top: 10px;
}

.contact-note strong {
  color: var(--text);
  font-family: Geist, Inter, sans-serif;
  font-size: 1.02rem;
}

.contact-note span {
  color: var(--muted);
}

.contact-tile {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 20px;
  border-radius: 18px;
  background: transparent;
  text-decoration: none;
  transition: background 180ms ease;
}

.contact-tile:hover {
  background: var(--soft-surface);
}

.contact-tile span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-tile strong {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.policy-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.tab {
  display: grid;
  min-height: 154px;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  color: var(--muted);
  padding: 16px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tab:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 70, 229, 0.18);
}

.tab.active {
  border-color: rgba(79, 70, 229, 0.28);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(14, 165, 233, 0.05));
  color: var(--primary);
}

.tab strong,
.tab small {
  display: block;
}

.tab strong {
  color: var(--text);
  font-size: 0.95rem;
}

.tab small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.policy-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
}

.policy-icon::before {
  display: block;
  width: 21px;
  height: 21px;
  background: currentColor;
  content: "";
  mask: var(--preview-icon) center / contain no-repeat;
}

.policy-content {
  padding: clamp(28px, 4.8vw, 46px);
}

.policy-content h3 {
  margin-bottom: 12px;
}

.policy-summary {
  margin-top: -2px;
  color: var(--text) !important;
  font-weight: 600;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.admin-section {
  border-top: 1px solid var(--border);
}

.notice {
  min-height: 24px;
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 700;
}

.admin-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  margin-bottom: 18px;
}

.access-intro {
  max-width: 680px;
}

.access-intro strong {
  color: var(--text);
  font-family: Geist, Inter, sans-serif;
  font-size: 1.08rem;
}

.hidden {
  display: none !important;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  background: var(--surface);
  padding: 11px 12px;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

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

.wide {
  grid-column: 1 / -1;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-label input {
  width: auto;
}

.project-form {
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  padding: 16px;
}

.project-form-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.small {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.site-footer p {
  display: grid;
  gap: 4px;
  max-width: 520px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

@media (max-width: 980px) {
  .hero,
  .split,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .service-grid,
  .policy-tabs {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 8px;
    width: min(100% - 16px, var(--max));
    margin-top: 8px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    padding: 9px 12px;
    font: inherit;
    font-weight: 700;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 8px;
    left: 8px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    padding: 8px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav.simple-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .hero {
    min-height: auto;
  }

  .preview-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .preview-row > span:last-child {
    grid-column: 2;
    width: fit-content;
  }

  .about-mark {
    width: 72px;
    height: 72px;
  }

  .form-grid,
  .project-form,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .tab {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .section-band,
  .content-section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .section-band,
  .content-section {
    padding: 44px 0;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .brand {
    font-size: 1.12rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

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