:root {
  --navy: #0a1f38;
  --navy-2: #0f2b4c;
  --teal: #14b8a6;
  --cyan: #22d3ee;
  --orange: #f59e0b;
  --red: #ef4444;
  --green: #22c55e;
  --ink: #0f172a;
  --muted: #64748b;
  --paper: #f8fafc;
  --paper-2: #eef2f7;
  --card: #ffffff;
  --border: #e2e8f0;
  --radius: 16px;
  --container: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--muted);
  background: var(--navy-2);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

img, svg { display: block; max-width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 31, 56, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.brand-mark-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.supported-by-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color .15s ease;
}
.main-nav a:hover { color: #fff; }

.product-switch {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}
.product-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 6px 13px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all .15s ease;
}
.product-btn:hover { color: #fff; }
.product-btn.is-active {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #04222b;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.12);
}
.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s ease;
}
.lang-btn.is-active {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #04222b;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(34,211,238,0.18), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(20,184,166,0.15), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 96px 0 84px;
}
.hero-inner { max-width: 780px; }
.hero-kicker {
  display: block;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 0 30px;
}
.pill-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 34px;
}
.pill {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
}
.pill-solid {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #04222b;
  border: none;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 10px;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #04222b;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.partners { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; }
.partners-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.partner-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 13px;
  border-radius: 8px;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--navy); }
.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}
.eyebrow-red { color: var(--red); }
.eyebrow-light { color: var(--cyan); }
h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  max-width: 820px;
}
.light-heading { color: #fff; }
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 40px;
}
.lead-light { color: rgba(255,255,255,0.72); }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 22px; margin-top: 10px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 4px solid var(--teal);
}
.card.accent-red { border-top-color: var(--red); }
.card.accent-teal { border-top-color: var(--teal); }
.card.accent-green { border-top-color: var(--green); }
.card h3 { margin: 0 0 14px; font-size: 1.15rem; }
.card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.card ul li { margin-bottom: 8px; }
.card-sm { padding: 24px; border-top-width: 3px; }
.card-sm h4 { margin: 0 0 12px; font-size: 1.02rem; }
.card-sm p { color: var(--muted); font-size: 0.94rem; margin: 0; }
.card-sm ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 0.92rem; }
.card-sm ul li { margin-bottom: 7px; }

.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(20,184,166,0.12);
  color: var(--teal);
  font-weight: 800;
  margin-bottom: 14px;
}
.num-badge-orange { background: rgba(245,158,11,0.12); color: var(--orange); }
.num-badge-green { background: rgba(34,197,94,0.12); color: var(--green); }
.tag-line { font-size: 0.82rem; font-weight: 700; color: var(--muted); margin: 0 0 10px; }

.trl-banner {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 16px 22px;
  border-radius: 12px;
  margin-bottom: 36px;
}

.reg-strip {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.reg-label { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.reg-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-light {
  background: var(--paper-2);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ---------- Solution feature list ---------- */
.feature-list { display: flex; flex-direction: column; gap: 22px; margin: 30px 0 50px; }
.feature-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}
.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34, 184, 20, 0.1);
  border-radius: 12px;
}
.feature-row h4 { margin: 0 0 6px; font-size: 1.02rem; }
.feature-row p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.competitive { margin-top: 20px; }
.competitive h3 { font-size: 1.2rem; margin: 0 0 6px; }
.legend { color: var(--muted); font-size: 0.88rem; margin: 0 0 22px; }
.comp-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.comp-who strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.comp-who span { font-size: 0.85rem; color: var(--muted); }
.comp-body p { margin: 0 0 6px; font-size: 0.94rem; }
.comp-body .adv { color: #0f766e; font-weight: 600; }
.comp-body .adv::before { content: "▲ "; }
.comp-body .gap { color: var(--muted); }
.comp-body .gap::before { content: "▽ "; }

/* ---------- Markets ---------- */
.market-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: left;
}
.market-icon { font-size: 1.8rem; margin-bottom: 12px; }
.market-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.market-stat { font-weight: 800; font-size: 1.3rem; margin: 0 0 4px; color: var(--navy); }
.market-detail { color: var(--muted); font-size: 0.86rem; margin: 0 0 16px; }
.stage-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
}
.stage-current { background: rgba(20,184,166,0.12); color: var(--teal); }

.target-mix {
  margin: 30px 0;
  font-weight: 700;
  color: var(--navy);
  background: rgba(245,158,11,0.1);
  border-left: 4px solid var(--orange);
  padding: 14px 20px;
  border-radius: 8px;
}
.gtm-grid { margin-bottom: 36px; }
.gtm-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.gtm-card h4 { margin: 0 0 8px; font-size: 0.96rem; }
.gtm-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.sti-note {
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

/* ---------- Environmental stats ---------- */
.stat-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 26px;
}
.stat-value { font-size: 2rem; font-weight: 800; margin: 0 0 8px; color: var(--cyan); }
.stat-label { font-weight: 700; margin: 0 0 10px; color: #fff; font-size: 0.96rem; }
.stat-source { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin: 0; }

.mech-title { margin-top: 56px; font-size: 1.15rem; }
.mech-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.mech-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mech-row p { margin: 0; color: rgba(255,255,255,0.85); font-size: 0.95rem; max-width: 620px; }
.mech-tag { font-size: 0.78rem; color: rgba(255,255,255,0.5); white-space: nowrap; }

/* ---------- CSR pillars ---------- */
.pillar-title { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.03em; }
.pillar-green { color: var(--green); }
.pillar-cyan { color: var(--cyan); }
.pillar-orange { color: var(--orange); }
.pillar-red { color: var(--red); }

.impact-score-label {
  margin: 50px 0 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(20,184,166,0.08);
  padding: 12px 18px;
  border-radius: 8px;
}
.score-tile { text-align: center; }
.score-name { font-weight: 700; font-size: 0.9rem; margin: 0 0 10px; }
.score-bar { height: 8px; background: var(--paper-2); border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.score-fill { height: 100%; border-radius: 999px; }
.score-num { font-weight: 800; font-size: 1.05rem; margin: 0; }

/* ---------- Team ---------- */
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}
.avatar {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 auto 18px;
}
.team-card h3 { margin: 0 0 4px; font-size: 1.08rem; }
.team-role { color: var(--teal); font-weight: 700; font-size: 0.88rem; margin: 0 0 14px; }
.team-card p:not(.team-role) { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0 50px;
}
.timeline-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  border-top: 4px solid var(--teal);
}
.timeline-step:nth-child(2) { border-top-color: var(--cyan); }
.timeline-step:nth-child(3) { border-top-color: var(--orange); }
.timeline-step:nth-child(4) { border-top-color: var(--navy); }
.step-period { font-size: 0.78rem; font-weight: 700; color: var(--muted); }
.timeline-step h4 { margin: 6px 0 12px; font-size: 1.05rem; }
.timeline-step ul { margin: 0; padding-left: 16px; color: var(--muted); font-size: 0.86rem; }
.timeline-step ul li { margin-bottom: 6px; }

.budget-heading { font-size: 1.1rem; margin: 0 0 22px; }
.budget-list { display: flex; flex-direction: column; gap: 16px; }
.budget-row {
  display: grid;
  grid-template-columns: 140px 1fr 110px 1fr;
  align-items: center;
  gap: 16px;
}
.budget-bar-wrap { height: 8px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.budget-bar { height: 100%; }
.budget-name { font-weight: 700; font-size: 0.88rem; margin: 0; }
.budget-amount { font-weight: 800; color: var(--navy); margin: 0; }
.budget-note { color: var(--muted); font-size: 0.82rem; margin: 0; }

/* ---------- Outlook ---------- */
.outlook-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; }
.outlook-sub {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin: 0 0 20px;
}
.metric-grid { margin-top: 0; }
.metric {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.metric-value { font-weight: 800; font-size: 1.25rem; margin: 0 0 4px; color: var(--teal); }
.metric-label { font-size: 0.8rem; color: var(--muted); margin: 0; }

.region-list { display: flex; flex-direction: column; gap: 20px; }
.region-row { display: flex; gap: 14px; align-items: flex-start; }
.region-icon { font-size: 1.3rem; flex-shrink: 0; }
.region-label { font-weight: 700; font-size: 0.88rem; margin: 0 0 3px; color: var(--navy); }
.region-row p { margin: 0 0 3px; font-size: 0.92rem; }
.region-sub { color: var(--muted); font-size: 0.82rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 560px;
}
.contact-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px;
}
.contact-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.contact-item a, .contact-item span { color: #fff; font-weight: 600; text-decoration: none; }
.contact-item a:hover { color: var(--cyan); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-brand-mark { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin: 0; font-size: 0.86rem; }
.footer-copy { margin: 0; font-size: 0.82rem; }

/* ---------- Data tables (pricing, market, financials) ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 32px;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 480px;
}
.data-table th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: 12px 18px;
  font-weight: 700;
  white-space: nowrap;
}
.data-table td {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  color: var(--ink);
  white-space: nowrap;
}
.data-table tbody tr:nth-child(even) { background: var(--paper-2); }
.data-table td.muted { color: var(--muted); }
.table-caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin: -14px 0 32px;
}
.section-dark .table-wrap { border-color: rgba(255,255,255,0.14); }
.section-dark .data-table th { background: rgba(255,255,255,0.08); }
.section-dark .data-table td { color: rgba(255,255,255,0.85); border-top-color: rgba(255,255,255,0.1); }
.section-dark .data-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.04); }

/* ---------- Roadmap phase cards (AI Sailor) ---------- */
.roadmap-phase {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
}
.roadmap-phase-head {
  background: var(--navy);
  color: #fff;
  padding: 16px 24px;
}
.roadmap-phase-head .phase-period { font-size: 0.78rem; color: var(--cyan); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.roadmap-phase-head h3 { margin: 4px 0 0; font-size: 1.1rem; }
.roadmap-phase-body { padding: 18px 24px; }
.phase-row { display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding: 12px 0; border-top: 1px solid var(--border); }
.phase-row:first-child { border-top: none; }
.phase-row-label { font-weight: 700; font-size: 0.85rem; color: var(--teal); }
.phase-row p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ---------- Vision / future section ---------- */
.vision-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 26px;
}
.vision-block h3 { color: #fff; margin: 0 0 6px; font-size: 1.1rem; }
.vision-block p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.94rem; }
.ai-phase-list { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.ai-phase-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 20px;
}
.ai-phase-row .phase-tag { font-weight: 800; color: var(--cyan); font-size: 0.85rem; white-space: nowrap; }
.ai-phase-row p { margin: 0; color: rgba(255,255,255,0.75); font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .outlook-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .budget-row { grid-template-columns: 1fr; gap: 6px; }
  .comp-row { grid-template-columns: 1fr; }
  .phase-row { grid-template-columns: 1fr; gap: 4px; }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy-2);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 76px 0 60px; }
}
@media (max-width: 560px) {
  .product-btn { padding: 6px 9px; font-size: 0.72rem; }
}
