/* [project]/src/app/(frontend)/globals.css [app-client] (css) */
:root {
  --bg: #edf7ff;
  --paper: #f8fcff;
  --paper-strong: #fff;
  --ink: #0b1f33;
  --muted: #51677d;
  --line: #c8dced;
  --green: #0ea5c8;
  --green-strong: #075985;
  --green-deep: #082f49;
  --red: #ff5a6b;
  --red-strong: #e03454;
  --rose: #dcecff;
  --amber: #ffd166;
  --mint: #d8f5ff;
  --blue: #2563eb;
  --blue-bright: #38bdf8;
  --blue-soft: #e0f2fe;
  --contrast-bg: #000;
  --contrast-text: #fff;
  --contrast-accent: #00e5ff;
  --contrast-emphasis: #ff0;
  --font-scale: 1;
  --shadow: 0 28px 90px #082f4933;
  --shadow-soft: 0 18px 50px #082f491c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[data-text-scale="large"] {
  --font-scale: 1.15;
}

html[data-text-scale="largest"] {
  --font-scale: 1.3;
}

html[data-contrast="high"] {
  --bg: var(--contrast-bg);
  --paper: var(--contrast-bg);
  --paper-strong: var(--contrast-bg);
  --ink: var(--contrast-text);
  --muted: var(--contrast-emphasis);
  --line: var(--contrast-accent);
  --green: var(--contrast-accent);
  --green-strong: var(--contrast-accent);
  --green-deep: var(--contrast-bg);
  --red: #ff7a90;
  --red-strong: #ff7a90;
  --rose: var(--contrast-bg);
  --mint: var(--contrast-bg);
  --blue: var(--contrast-accent);
  --blue-bright: var(--contrast-accent);
  --blue-soft: var(--contrast-bg);
}

body {
  background: radial-gradient(circle at 10% 8%, #38bdf861, transparent 28rem),
    radial-gradient(circle at 86% 3%, #2563eb42, transparent 24rem),
    radial-gradient(circle at 74% 72%, #ffd16638, transparent 22rem),
    linear-gradient(180deg, #f8fcff 0%, var(--bg) 42%, #e6f3ff 100%);
  color: var(--ink);
  font-size: calc(16px * var(--font-scale));
  text-rendering: optimizelegibility;
  margin: 0;
  font-family: Plus Jakarta Sans, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

html[data-contrast="high"] body {
  background: var(--contrast-bg);
}

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

.skip-link {
  background: var(--green-deep);
  color: #fff;
  z-index: 1000;
  border-radius: 0 0 14px 14px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform .18s;
  position: fixed;
  top: 0;
  left: 24px;
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

#main-content:focus {
  outline: none;
}

.site-header {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  z-index: 30;
  background: #f8fcffeb;
  border-bottom: 1px solid #c8dcedc7;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  margin: 0;
  padding: 6px clamp(14px, 3vw, 34px);
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 0 10px 30px #082f4914;
}

.brand {
  align-items: center;
  min-width: 0;
  min-height: 0;
  display: inline-flex;
  position: relative;
}

.brand-logo {
  width: clamp(360px, 30vw, 560px);
  max-width: min(560px, 100%);
  height: auto;
  display: block;
}

.brand-logo--flight {
  display: none;
}

.brand-text {
  color: var(--green-deep);
  font-size: clamp(calc(24px * var(--font-scale)), 3vw, calc(42px * var(--font-scale)));
  font-weight: 850;
}

.brand--flight .brand-logo--wall {
  display: none;
}

.brand--flight .brand-logo--flight {
  display: block;
}

.nav {
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: min(100%, 1180px);
  font-weight: 750;
  display: flex;
}

.accessibility-toolbar {
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.accessibility-button {
  border: 0;
  border-bottom: 1px solid var(--blue);
  box-shadow: none;
  color: var(--green-deep);
  background: none;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  min-width: 34px;
  min-height: 36px;
  padding: 4px 6px;
  font-weight: 950;
  display: inline-flex;
}

.accessibility-button:hover {
  background: #0ea5c824;
  transform: none;
}

.accessibility-button[aria-pressed="true"] {
  color: var(--blue);
}

.text-size-button--regular {
  font-size: calc(17px * var(--font-scale));
}

.text-size-button--large {
  font-size: calc(21px * var(--font-scale));
}

.text-size-button--largest {
  font-size: calc(25px * var(--font-scale));
}

.contrast-toggle {
  border: 1px solid #0000;
  border-radius: 6px;
  min-width: 38px;
  margin-left: 4px;
}

.contrast-toggle[aria-pressed="true"] {
  border-color: var(--red-strong);
}

.contrast-toggle-icon {
  background: linear-gradient(90deg, var(--blue) 0 50%, #fff 50% 100%);
  border: 2px solid var(--blue);
  border-radius: 999px;
  width: 22px;
  height: 22px;
  display: block;
}

.nav a {
  border-radius: 999px;
  padding: 9px 14px;
}

.nav a:hover {
  color: var(--green-strong);
  background: #0ea5c824;
}

.nav-cta {
  background: linear-gradient(135deg, var(--green-deep), var(--blue));
  box-shadow: 0 12px 28px #2563eb3d;
  color: #fff !important;
}

.nav-cta--secondary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
}

.nav-login {
  white-space: nowrap;
  margin-left: auto;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  background: var(--blue-soft);
  color: var(--green-strong);
  cursor: pointer;
  font-size: calc(13px * var(--font-scale));
  -webkit-user-select: none;
  user-select: none;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  font-weight: 800;
  list-style: none;
  display: inline-flex;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary:after {
  content: "";
  border-top: 5px solid;
  border-left: 4px solid #0000;
  border-right: 4px solid #0000;
  width: 0;
  height: 0;
}

.language-switcher[open] summary:after {
  transform: rotate(180deg);
}

.language-menu {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  z-index: 20;
  background: #fff;
  border-radius: 8px;
  gap: 2px;
  min-width: 170px;
  padding: 6px;
  display: grid;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
}

.language-menu a {
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
  border-radius: 6px;
  padding: 10px 12px;
}

.language-menu a:hover, .language-menu a.active {
  color: var(--green-strong);
  background: #0ea5c821;
  font-weight: 800;
}

.hero {
  grid-template-columns: minmax(360px, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(12px, 2vw, 26px) clamp(34px, 5vw, 82px);
  min-height: calc(100vh - 54px);
  padding: clamp(6px, 1vw, 14px) clamp(20px, 5vw, 72px) clamp(19px, 2vw, 28px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
  display: block;
}

.hero-title-row {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, clamp(360px, 28vw, 560px)) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  width: 100%;
  margin-bottom: 0;
  display: grid;
}

.hero-title-copy {
  min-width: 0;
}

.hero-title-copy .eyebrow {
  margin-bottom: 10px;
}

.hero-title-copy h1 {
  font-family: Montserrat, Poppins, Arial, sans-serif;
  font-size: clamp(calc(36px * var(--font-scale)), 3.45vw, calc(54px * var(--font-scale)));
  max-width: 900px;
  margin-bottom: 0;
  font-weight: 560;
  line-height: 1.04;
}

.hero:before {
  content: "";
  z-index: -1;
  background: linear-gradient(135deg, #38bdf838, #0000 58%), linear-gradient(315deg, #2563eb2e, #0000 62%), linear-gradient(#ffffff6b, #e0f2fe47);
  border: 1px solid #c8dcedd1;
  border-radius: 34px;
  position: absolute;
  inset: 12px clamp(14px, 3vw, 34px) 19px;
}

.eyebrow {
  color: var(--blue);
  font-size: calc(12px * var(--font-scale));
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 760;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(calc(42px * var(--font-scale)), 5vw, calc(74px * var(--font-scale)));
  max-width: 780px;
  margin-bottom: 26px;
  font-weight: 600;
  line-height: 1;
}

h2 {
  font-size: clamp(calc(26px * var(--font-scale)), 3vw, calc(42px * var(--font-scale)));
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.05;
}

h3 {
  font-size: calc(20px * var(--font-scale));
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  font-size: clamp(calc(19px * var(--font-scale)), 1.65vw, calc(25px * var(--font-scale)));
  max-width: 660px;
  font-weight: 520;
  line-height: 1.75;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
  display: flex;
}

.button, button {
  cursor: pointer;
  font: inherit;
  border: 0;
  border-radius: 999px;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  font-weight: 900;
  transition: box-shadow .16s, transform .16s, background .16s;
  display: inline-flex;
}

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

.button.primary, button {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  box-shadow: 0 18px 36px #2563eb47;
}

.button.secondary {
  box-shadow: inset 0 0 0 1px var(--line),
    0 14px 30px #082f4914;
  color: var(--ink);
  background: #ffffffdb;
}

.create-demo-link {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
}

html[data-contrast="high"] .site-header, html[data-contrast="high"] .hero, html[data-contrast="high"] .feature-card, html[data-contrast="high"] .product-panel, html[data-contrast="high"] .security-band, html[data-contrast="high"] .plan, html[data-contrast="high"] .lead-form, html[data-contrast="high"] .visual-story-card, html[data-contrast="high"] .create-demo-widget-section, html[data-contrast="high"] .panel-content > div:not(.screen-tabs), html[data-contrast="high"] .preview-screen > div {
  background: var(--contrast-bg);
  border-color: var(--contrast-accent);
  box-shadow: none;
}

html[data-contrast="high"] .nav a, html[data-contrast="high"] .language-switcher summary, html[data-contrast="high"] .accessibility-button, html[data-contrast="high"] .button, html[data-contrast="high"] button {
  background: var(--contrast-bg);
  border-color: var(--contrast-emphasis);
  box-shadow: none;
  color: var(--contrast-accent) !important;
}

html[data-contrast="high"] .nav a:hover, html[data-contrast="high"] .button:hover, html[data-contrast="high"] button:hover {
  background: #101010;
}

html[data-contrast="high"] .accessibility-button {
  border-bottom-color: var(--contrast-accent);
}

html[data-contrast="high"] .contrast-toggle[aria-pressed="true"] {
  border-color: #ff7a00;
}

html[data-contrast="high"] .contrast-toggle-icon {
  background: linear-gradient(90deg, var(--contrast-accent) 0 50%, var(--contrast-bg) 50% 100%);
  border-color: var(--contrast-accent);
}

html[data-contrast="high"] .eyebrow, html[data-contrast="high"] .hero-lead, html[data-contrast="high"] .section-body, html[data-contrast="high"] .feature-card p, html[data-contrast="high"] .plan p, html[data-contrast="high"] .faq-item p {
  color: var(--contrast-emphasis);
}

.nav .accessibility-button {
  box-shadow: none;
  color: var(--green-deep);
  background: none;
  min-height: 36px;
}

.nav .accessibility-button:hover {
  background: #0ea5c824;
  transform: none;
}

.nav .accessibility-button[aria-pressed="true"] {
  color: var(--blue);
}

.proof-list {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.proof-list li {
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: calc(14px * var(--font-scale));
  background: #ffffffdb;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 700;
}

.product-panel {
  box-shadow: var(--shadow);
  background: linear-gradient(#fff, #eff8ff);
  border: 1px solid #c8dcedf2;
  border-radius: 18px;
  place-self: center end;
  width: min(100%, 940px);
  overflow: hidden;
  transform: rotate(1deg);
}

.product-panel--screenshot {
  background: #fff;
  padding: 0;
  transform: rotate(.75deg)translateY(8px);
}

.product-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.panel-toolbar {
  background: linear-gradient(90deg, var(--green-deep), var(--green-strong) 54%, var(--blue) 100%);
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  display: flex;
}

.panel-toolbar span {
  background: #ffffffb3;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.panel-content {
  gap: 14px;
  padding: clamp(20px, 4vw, 42px);
  display: grid;
}

.panel-content > div:not(.screen-tabs), .preview-screen > div {
  border: 1px solid var(--line);
  background: #ffffffeb;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 28px #082f4912;
}

.screen-tabs {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.screen-tabs a {
  color: var(--green-strong);
  font-size: calc(13px * var(--font-scale));
  background: #0ea5c821;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
}

.screen-tabs a:hover {
  background: linear-gradient(135deg, var(--green-strong), var(--blue));
  color: #fff;
}

.preview-screen {
  gap: 14px;
  scroll-margin-top: 24px;
  display: none;
}

.screen-tabs + .preview-screen, .preview-screen:target {
  display: grid;
}

.panel-content:has(.preview-screen:target) .screen-tabs + .preview-screen {
  display: none;
}

.panel-content:has(.preview-screen:target) .preview-screen:target {
  display: grid;
}

.preview-screen-heading h2 {
  font-size: calc(22px * var(--font-scale));
  margin-bottom: 8px;
  line-height: 1.12;
}

.preview-screen-heading p {
  margin-bottom: 0;
}

.panel-kicker {
  color: var(--blue);
  font-size: calc(13px * var(--font-scale));
  margin-bottom: 8px;
  font-weight: 700;
}

.panel-content strong {
  font-size: calc(40px * var(--font-scale));
  font-weight: 950;
  line-height: 1;
  display: block;
}

.panel-content span {
  color: var(--muted);
}

.metric-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.timeline {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  display: grid;
}

.timeline span {
  background: linear-gradient(135deg, var(--blue-soft), #d8f5ff);
  color: var(--ink);
  font-size: calc(13px * var(--font-scale));
  text-align: center;
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 700;
}

.section, .faq-section {
  padding: 96px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
}

.feature-grid, .pricing-grid, .faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
  display: grid;
}

.feature-card, .plan, .faq-grid article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #ffffffd1;
  border-radius: 18px;
  padding: 28px;
}

.feature-card {
  min-height: 232px;
  position: relative;
}

.feature-card:before {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright) 62%, var(--amber));
  content: "";
  border-radius: 999px;
  width: 46px;
  height: 10px;
  margin-bottom: 26px;
  display: block;
}

.visual-story-section {
  padding: 12px clamp(20px, 5vw, 72px) 104px;
}

.visual-story-heading {
  max-width: 900px;
}

.visual-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  display: grid;
}

.visual-story-card {
  box-shadow: var(--shadow-soft);
  background: #ffffffe0;
  border: 1px solid #c8dcedeb;
  border-radius: 18px;
  gap: 18px;
  display: grid;
  overflow: hidden;
}

.visual-story-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.visual-story-card div {
  padding: 0 24px 26px;
}

.visual-story-card h3 {
  margin-bottom: 8px;
}

.visual-story-card p {
  margin-bottom: 0;
}

.security-band {
  background: radial-gradient(circle at 82% 16%, #38bdf838, transparent 22rem),
    linear-gradient(135deg, var(--green-deep), var(--green-strong) 58%, #1d4ed8);
  color: #fff;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 32px;
  padding: 88px clamp(20px, 5vw, 72px);
  display: grid;
}

.security-band p, .security-band .eyebrow {
  color: #ffffffc7;
}

.security-points {
  gap: 12px;
  display: grid;
}

.security-points p {
  background: #ffffff1a;
  border: 1px solid #ffffff29;
  border-radius: 16px;
  margin: 0;
  padding: 18px;
}

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

.plan {
  flex-direction: column;
  display: flex;
}

.plan.highlighted {
  background: radial-gradient(circle at 78% 12%, #38bdf838, transparent 14rem),
    linear-gradient(145deg, var(--green-deep), #0f4270 56%, #1d4ed8);
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 30px 70px #2563eb47;
}

.plan.highlighted p, .plan.highlighted li {
  color: #ffffffc7;
}

.price {
  color: var(--blue);
  font-size: calc(32px * var(--font-scale));
  font-weight: 900;
}

.plan.highlighted .price {
  color: #7dd3fc;
}

.plan ul {
  color: var(--muted);
  margin: 12px 0 24px;
  padding-left: 20px;
  line-height: 1.8;
}

.plan .button {
  margin-top: auto;
}

.demo-section {
  background: radial-gradient(circle at 14% 20%, #38bdf847, transparent 20rem),
    linear-gradient(135deg, var(--rose), #f8fcff 58%, var(--mint));
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: 38px;
  padding: 96px clamp(20px, 5vw, 72px);
  display: grid;
}

.lead-form {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #ffffffe6;
  border-radius: 18px;
  gap: 16px;
  padding: 24px;
  display: grid;
}

label {
  color: var(--ink);
  gap: 8px;
  font-weight: 800;
  display: grid;
}

.checkbox-label {
  color: var(--muted);
  font-size: calc(14px * var(--font-scale));
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 600;
  line-height: 1.45;
  display: grid;
}

input, textarea {
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  border-radius: 12px;
  width: 100%;
  padding: 13px 14px;
}

input:focus, textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 4px #0ea5c829;
}

input[type="checkbox"] {
  width: 18px;
  margin-top: 2px;
}

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

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

.form-status {
  border-radius: 12px;
  margin: 0;
  padding: 12px 14px;
  font-weight: 700;
}

.form-status.success {
  color: var(--green-deep);
  background: #08789421;
}

.form-status.error {
  color: var(--red-strong);
  background: #b91c3a1f;
}

.create-demo-page {
  min-height: 100vh;
  padding: 18px clamp(14px, 3vw, 34px) 72px;
}

.create-demo-header {
  justify-content: flex-start;
  align-items: center;
  padding: 12px 0 28px;
  display: flex;
}

.create-demo-hero {
  box-shadow: var(--shadow-soft);
  background: radial-gradient(circle at 78% 18%, #38bdf83d, #0000 22rem), linear-gradient(135deg, #ffffffe6, #e0f2feb8);
  border: 1px solid #c8dcedd1;
  border-radius: 28px;
  padding: clamp(32px, 6vw, 72px);
}

.create-demo-hero h1 {
  max-width: 1120px;
}

.create-demo-widget-section {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #ffffffe0;
  border-radius: 18px;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
}

.create-demo-widget-section h2 {
  font-size: clamp(calc(26px * var(--font-scale)), 3vw, calc(36px * var(--font-scale)));
  margin-bottom: 20px;
}

@media (max-width: 980px) {
  .hero, .security-band, .demo-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-panel {
    grid-area: auto / 1;
    justify-self: stretch;
  }

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

  .pricing-grid, .faq-grid, .visual-story-grid {
    grid-template-columns: 1fr;
  }

  .plan.highlighted {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    justify-content: flex-start;
    padding-inline: 10px;
    overflow-x: auto;
  }

  .brand {
    min-width: 0;
    max-width: min(420px, 86vw);
  }

  .brand-logo {
    max-width: min(420px, 86vw);
  }

  .hero-title-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .nav {
    flex: 0 0 max-content;
    flex-wrap: nowrap;
  }

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

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

/*# sourceMappingURL=src_app_%28frontend%29_globals_0r2lidu.css.map*/