:root {
  --navy-950: #06162a;
  --navy-900: #0b2240;
  --navy-800: #17345e;
  --gold-500: #c89a3b;
  --gold-300: #e0bf7a;
  --paper: #f8f8f6;
  --ink: #0b1a2f;
  --line: #d8d9dc;
  --shadow: 0 18px 40px rgba(7, 19, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #ffffff 0%, #f2f5fa 38%, #edf1f6 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(248, 248, 246, 0.88);
  border-bottom: 1px solid rgba(12, 33, 62, 0.1);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--gold-500), #f0d4a1);
  box-shadow: inset 0 0 0 1px rgba(11, 34, 64, 0.22);
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: none;
}

.brand-tagline {
  font-size: 0.83rem;
  color: #4d5d75;
}

.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--navy-900);
  font-weight: 700;
}

.lang-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--navy-900);
  font-weight: 700;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 999px;
}

.lang-btn.active {
  border-color: var(--gold-500);
  background: rgba(200, 154, 59, 0.12);
}

.hero {
  padding: 48px 0 28px;
}

.hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
}

.hero-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-promo-item {
  margin: 0;
  background: linear-gradient(145deg, #ffffff, #f4f6fb);
  border: 1px solid rgba(200, 154, 59, 0.5);
  color: var(--navy-900);
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 6px 14px rgba(12, 33, 62, 0.1);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 12px;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy-900);
  line-height: 1.16;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.45rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}

h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.lead {
  color: #1d3356;
  max-width: 70ch;
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(140deg, #b98a2a, var(--gold-500));
  color: #fff;
  box-shadow: 0 10px 22px rgba(179, 132, 35, 0.32);
}

.btn-ghost {
  border: 1px solid var(--navy-900);
  color: var(--navy-900);
}

.highlight-card {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #f2f7ff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.highlight-card h2 {
  color: #ffffff;
}

.highlight-card p {
  color: #d7e3f7;
  margin-bottom: 14px;
}

.highlight-card ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.metrics {
  padding: 24px 0 50px;
}

.metrics-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.metric-value {
  font-size: 2rem;
  color: var(--navy-900);
  font-weight: 700;
  font-family: "Playfair Display", Georgia, serif;
}

.metric-label {
  color: #4f627f;
}

section {
  padding: 40px 0;
}

.section-head {
  max-width: 75ch;
  margin-bottom: 26px;
}

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

.demo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(8, 20, 38, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(9, 23, 42, 0.18);
}

.demo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.demo-card-body {
  padding: 14px 14px 16px;
}

.demo-open-btn {
  all: unset;
  display: block;
  width: 100%;
  cursor: pointer;
}

.demo-open-btn:focus-visible {
  outline: 3px solid rgba(200, 154, 59, 0.7);
  outline-offset: -3px;
}

.demo-title {
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.demo-meta {
  color: #465b7d;
  font-weight: 600;
}

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

.interior-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(8, 20, 38, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.interior-open-btn {
  all: unset;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  width: 100%;
  cursor: pointer;
}

.interior-open-btn:focus-visible {
  outline: 3px solid rgba(200, 154, 59, 0.7);
  outline-offset: -3px;
}

.interior-media {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
  background: #ecf0f7;
}

.interior-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.interior-card-title {
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.interior-card-meta {
  color: #5a6e8e;
  font-weight: 600;
  font-size: 0.94rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.steps {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.notice {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: 12px;
  padding: 18px;
}

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

.feature-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.price-list,
.included-list,
.ref-list,
.support-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.small-info {
  margin-top: 14px;
  color: #435a78;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  border-bottom: 1px solid #e7eaee;
  padding: 12px;
  text-align: left;
}

th {
  background: #eff3f8;
  color: var(--navy-900);
  font-family: "Playfair Display", Georgia, serif;
}

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.contact-card p {
  margin-bottom: 10px;
}

.form-wrap iframe {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.site-footer {
  border-top: 1px solid rgba(11, 34, 64, 0.15);
  background: #f6f7f9;
}

.footer-wrap {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 140px;
  max-width: 34vw;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-credit {
  font-size: 0.78rem;
  color: #6a7690;
}

.footer-credit a {
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(20px);
}

.bg-shape-1 {
  top: -120px;
  right: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(200, 154, 59, 0.16) 0%, rgba(200, 154, 59, 0) 68%);
}

.bg-shape-2 {
  bottom: -140px;
  left: -130px;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(23, 52, 94, 0.14) 0%, rgba(23, 52, 94, 0) 65%);
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 29, 0.8);
  backdrop-filter: blur(4px);
}

.gallery-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 94vw);
  max-height: 92vh;
  margin: 4vh auto;
  background: #fdfdfc;
  border-radius: 14px;
  border: 1px solid rgba(220, 224, 231, 0.8);
  box-shadow: 0 20px 50px rgba(2, 10, 24, 0.35);
  padding: 18px 18px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.gallery-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #ccd2dc;
  background: #fff;
  color: var(--navy-900);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  cursor: pointer;
}

.gallery-nav {
  border: 1px solid #cad1dd;
  background: #fff;
  color: var(--navy-900);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}

.gallery-figure {
  margin: 0;
  min-width: 0;
}

.gallery-figure img {
  width: 100%;
  height: min(66vh, 620px);
  object-fit: contain;
  border-radius: 10px;
  background: #f2f4f8;
}

.gallery-figure video {
  width: 100%;
  height: min(66vh, 620px);
  border-radius: 10px;
  background: #000;
}

.gallery-figure figcaption {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #304764;
  font-weight: 600;
}

.gallery-thumbs {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
}

.gallery-thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  width: 86px;
  flex: 0 0 86px;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.gallery-thumb video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: #0e203b;
}

.gallery-thumb.active {
  border-color: var(--gold-500);
}

body.gallery-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  .hero {
    padding: 22px 0 12px;
  }

  .brand-name {
    font-size: 1.55rem;
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .interior-open-btn {
    grid-template-columns: 1fr;
  }

  .interior-media {
    min-height: 200px;
    height: 200px;
  }

  .demo-card img {
    height: 210px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-panel {
    margin: 3vh auto;
    max-height: 94vh;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 52px;
  }

  .gallery-nav {
    width: 100%;
  }

  .gallery-prev {
    order: 2;
  }

  .gallery-next {
    order: 3;
  }

  .gallery-figure {
    grid-column: 1 / -1;
    order: 1;
  }

  .gallery-figure img {
    height: min(52vh, 420px);
  }

  .gallery-figure video {
    height: min(52vh, 420px);
  }

  .gallery-thumbs {
    grid-column: 1 / -1;
    order: 4;
    gap: 6px;
  }

  .gallery-thumb {
    width: 72px;
    flex-basis: 72px;
  }
}

/* Dashboard redesign overrides */
:root {
  --graphite-980: #070b12;
  --graphite-940: #0d1522;
  --graphite-900: #111d2e;
  --graphite-850: #1a273b;
  --electric-500: #2d7dff;
  --electric-400: #4b93ff;
  --violet-500: #8a5bff;
  --neon-500: #1de4a0;
  --text-100: #f4f8ff;
  --text-300: #afbdd4;
  --line-700: rgba(141, 170, 214, 0.2);
  --panel-bg: linear-gradient(160deg, rgba(18, 28, 44, 0.92), rgba(13, 21, 34, 0.92));
  --panel-glow: 0 14px 30px rgba(6, 12, 24, 0.45);
}

html,
body {
  background-color: var(--graphite-980);
}

body {
  font-family: "Space Grotesk", "Segoe UI", Tahoma, sans-serif;
  color: var(--text-100);
  background:
    radial-gradient(circle at 18% 10%, rgba(45, 125, 255, 0.22), rgba(45, 125, 255, 0) 38%),
    radial-gradient(circle at 82% 14%, rgba(138, 91, 255, 0.2), rgba(138, 91, 255, 0) 42%),
    radial-gradient(circle at 50% 120%, rgba(29, 228, 160, 0.14), rgba(29, 228, 160, 0) 52%),
    linear-gradient(135deg, var(--graphite-980), var(--graphite-900) 45%, #0b1321);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(111, 137, 178, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 137, 178, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 100%);
}

.app-shell {
  position: relative;
}

.container {
  width: min(1160px, 92vw);
}

.site-header {
  background: rgba(10, 16, 27, 0.84);
  border-bottom: 1px solid var(--line-700);
  box-shadow: 0 12px 24px rgba(5, 10, 18, 0.35);
}

.brand-logo {
  filter: drop-shadow(0 4px 10px rgba(45, 125, 255, 0.25));
}

.brand-name {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text-100);
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  padding: 4px 0 8px;
  text-shadow: 0 0 18px rgba(45, 125, 255, 0.22);
}

.brand-name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--electric-500), var(--neon-500));
  opacity: 0.7;
}

.lang-switch {
  color: var(--text-300);
}

.lang-btn {
  color: var(--text-300);
}

.lang-btn.active {
  color: #fff;
  border-color: rgba(138, 91, 255, 0.75);
  background: rgba(138, 91, 255, 0.2);
}

section {
  padding: 36px 0;
}

.hero {
  padding-top: 42px;
}

.eyebrow {
  color: var(--electric-400);
  letter-spacing: 0.14em;
}

.eyebrow:empty {
  display: none;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: #fff;
}

.lead,
.section-head p,
.panel-head p,
.small-info,
.metric-label,
.demo-meta,
.interior-card-meta,
.highlight-card p,
.notice p,
.contact-card p,
.feature-grid p {
  color: var(--text-300);
}

.hero-promo-item {
  background: rgba(45, 125, 255, 0.12);
  border-color: rgba(45, 125, 255, 0.44);
  color: #dce9ff;
  box-shadow: none;
}

.btn {
  border-radius: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric-500), var(--violet-500));
  box-shadow: 0 12px 24px rgba(65, 120, 255, 0.4);
}

.btn-ghost {
  border: 1px solid rgba(140, 163, 199, 0.42);
  color: var(--text-100);
  background: rgba(13, 21, 34, 0.62);
}

.status-panel,
.metric,
.demo-card,
.interior-card,
.notice,
.feature-grid article,
.table-wrap,
.contact-card,
.panel,
.plan-item {
  background: var(--panel-bg);
  border: 1px solid var(--line-700);
  box-shadow: var(--panel-glow);
  backdrop-filter: blur(8px);
}

.status-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(9, 17, 28, 0.5);
  border: 1px solid rgba(141, 170, 214, 0.2);
  gap: 8px;
}

.status-list span {
  color: var(--text-300);
}

.status-list strong {
  color: var(--neon-500);
  font-size: 0.95rem;
}

.metric-value,
.mono {
  font-family: "IBM Plex Mono", Consolas, monospace;
}

.metric {
  border-radius: 14px;
}

.metric-value {
  color: #fff;
}

.panel {
  border-radius: 14px;
  padding: 20px;
}

.panel-head {
  margin-bottom: 16px;
}

.calc-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text-300);
}

input[type="range"],
select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(138, 91, 255, 0.42);
  background: rgba(10, 18, 30, 0.95);
  color: #fff;
  padding: 10px 12px;
  font-family: "Space Grotesk", sans-serif;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--electric-500);
}

.result-grid {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-item {
  border: 1px solid rgba(141, 170, 214, 0.22);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(8, 15, 24, 0.58);
  display: grid;
  gap: 6px;
}

.result-item span {
  color: var(--text-300);
  font-size: 0.84rem;
}

.result-item strong {
  color: #fff;
  font-size: 0.96rem;
}

.progress-control {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text-300);
}

.progress-shell {
  height: 14px;
  border-radius: 999px;
  background: rgba(12, 22, 34, 0.92);
  border: 1px solid rgba(141, 170, 214, 0.24);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet-500), var(--electric-500), var(--neon-500));
  box-shadow: 0 0 14px rgba(29, 228, 160, 0.5);
  transition: width 0.45s ease;
}

.progress-meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  color: var(--text-300);
}

.progress-meta strong {
  color: var(--neon-500);
}

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

.plan-item {
  border-radius: 12px;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.plan-item strong {
  color: #fff;
}

.plan-item span {
  color: var(--neon-500);
}

.demo-card,
.interior-card,
.feature-grid article,
.contact-card,
.notice {
  border-radius: 14px;
}

.demo-card img,
.interior-media {
  filter: saturate(0.95) contrast(1.05);
}

.demo-card:hover {
  box-shadow: 0 18px 32px rgba(8, 14, 24, 0.45);
}

.price-list,
.included-list,
.ref-list,
.support-list,
.steps,
.highlight-card ul {
  color: #d8e3f8;
}

th {
  background: rgba(45, 125, 255, 0.16);
  color: #f0f6ff;
  font-family: "Space Grotesk", sans-serif;
}

td,
th {
  border-bottom-color: rgba(136, 160, 199, 0.28);
}

.site-footer {
  background: rgba(7, 11, 18, 0.85);
  border-top: 1px solid var(--line-700);
}

.footer-credit,
.footer-wrap p,
.footer-wrap a {
  color: var(--text-300);
}

.gallery-panel {
  background: linear-gradient(180deg, #111c2c, #0d1522);
  border-color: rgba(132, 159, 199, 0.42);
}

.gallery-close,
.gallery-nav {
  background: rgba(10, 18, 29, 0.95);
  border-color: rgba(132, 159, 199, 0.42);
  color: #f0f6ff;
}

.gallery-thumb.active {
  border-color: var(--electric-500);
}

.bg-shape-1 {
  background: radial-gradient(circle, rgba(45, 125, 255, 0.34) 0%, rgba(45, 125, 255, 0) 68%);
}

.bg-shape-2 {
  background: radial-gradient(circle, rgba(138, 91, 255, 0.28) 0%, rgba(138, 91, 255, 0) 65%);
}

@media (max-width: 1080px) {
  .plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  body {
    background-attachment: scroll;
  }

  .calc-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 16px;
  }
}
