@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,900|Source+Sans+Pro:300,400,700&amp;display=swap');
:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --primary: #ff7a3c;
  --primary-soft: #ffe4d4;
  --deep-blue: #11223b;
  --accent-blue: #2f5bff;
  --text: #263238;
  --muted: #6b7a8c;
  --border: #dde2ee;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(15, 35, 71, 0.09);
  --max-width: 1120px;
  --modal-z: 9999;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  //font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family:'Roboto',sans-serif;
  background: radial-gradient(circle at top left, #ffece0 0, #f5f7fb 40%, #eef3ff 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a { text-decoration: none; color: inherit; }

.page {
  min-height: 100vh;
  padding: 24px 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  width: 100%;
  max-width: var(--max-width);
}

header {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a3c, #ffb347);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 14px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.brand-text span:first-child {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.brand-text span:nth-child(2) {
  font-size: 15px;
  font-weight: 600;
}

.brand-text span:last-child {
  font-size: 13px;
  color: var(--muted);
}

.header-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a3c, #ffb347);
  color: #122135;
  box-shadow: 0 10px 28px rgba(255, 122, 60, 0.45);
}

.btn-ghost {
  background: white;
  color: var(--deep-blue);
  border: 1px solid var(--border);
}



.section.info-section{
	margin-bottom:16px;
	text-align: center;
	padding: 25px;
}

.info-section h2{
	font-size:26px;
	font-weight: 600;
    margin-bottom: 12px;
}

.info-section p{
	font-size: 15px;
    color: #555;
    max-width: 720px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.info-message{
	background:linear-gradient(to bottom right, #EFF7FA 0%, #b1dae4f7 100%);border:1px solid #EFF7FA;padding:14px 16px;border-radius:8px;
}
	

/* Hero */

.hero {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -100px -160px auto;
  width: 360px;
  height: 360px;
  background:
	radial-gradient(circle at 30% 0, rgba(255, 122, 60, 0.5), transparent 60%),
	radial-gradient(circle at 80% 80%, rgba(47, 91, 255, 0.3), transparent 65%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-left { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 228, 214, 0.9);
  color: var(--deep-blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.eyebrow span.icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  font-size: 11px;
}

h1 {
  font-size: clamp(26px, 3vw, 32px);
  color: var(--deep-blue);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  font-size:28px;
}

h1 span.highlight, h2 span.highlight {
  background: linear-gradient(120deg, #ff7a3c, #ffb347);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15.5px;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 12.5px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 10px;
  background: #0b1d33;
  color: #e5ecff;
  font-weight: 500;
}

.tag-pill span.accent {
  color: #ffb347;
  font-weight: 600;
}

.tag-outline {
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  background: #f6f7fd;
  color: var(--muted);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-meta {
  font-size: 13px;
  color: var(--muted);
}

.hero-meta span {
  font-weight: 500;
  color: var(--deep-blue);
}

.hero-right {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  background: rgba(8, 19, 40, 0.97);
  color: #e4ecff;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.hero-right-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #9fb0cb;
}

.hero-chip {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(159, 176, 203, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-feature-card {
  margin-top: 6px;
  border-radius: 16px;
  padding: 12px;
  background:
	radial-gradient(circle at 0 0, rgba(255, 122, 60, 0.45), transparent 60%),
	radial-gradient(circle at 100% 120%, rgba(47, 91, 255, 0.45), transparent 70%);
}

.hero-feature-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-feature-sub {
  font-size: 12.5px;
  color: #d6e1ff;
  margin-bottom: 8px;
}

.hero-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  font-size: 11.5px;
}

.hero-feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-feature-list span i {
  font-style: normal;
  font-size: 12px;
}

.hero-badge {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(3, 10, 28, 0.9);
}

.hero-badge span.label {
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(222, 230, 255, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

main {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 20px 20px 18px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.section-title {
  font-size: 18px;
  color: var(--deep-blue);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11.5px;
}

.pill {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f6f7fd;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  font-size: 13px;
}

.feature-card {
  border-radius: 16px;
  border: 1px solid #e2e6f4;
  background: #f8f9ff;
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.feature-card h3 {
  font-size: 14px;
  color: var(--deep-blue);
}

.feature-card p {
  font-size: 13px;
  color: var(--muted);
}

.feature-bullets {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--text);
}

.feature-bullets ul {
  margin-left: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 16px;
  font-size: 13px;
  margin-top: 6px;
}

.two-col-block h3 {
  font-size: 14px;
  color: var(--deep-blue);
  margin-bottom: 4px;
}

.two-col-block p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.two-col-block ul {
  margin-left: 18px;
  font-size: 12.5px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  font-size: 13px;
}

.stat {
  flex: 1 1 160px;
  border-radius: 14px;
  background: #0b1d33;
  color: #e5ecff;
  padding: 10px 12px 9px;
  position: relative;
  overflow: hidden;
}

.stat strong {
  font-size: 17px;
  display: block;
  margin-bottom: 2px;
}

.stat span {
  font-size: 11.5px;
  color: #c2cdee;
}

.stat::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 60% 0, rgba(255, 122, 60, 0.5), transparent 60%);
  opacity: 0.7;
}

.cta-section {
  margin-top: 8px;
  text-align: center;
  padding: 16px 14px 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17, 34, 59, 0.97), #050c19);
  color: #e5ecff;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9fb0cb;
  margin-bottom: 6px;
}

.cta-title {
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.cta-sub {
  font-size: 13px;
  color: #c4cfef;
  margin-bottom: 12px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}

.cta-note {
  font-size: 11.5px;
  color: #9fb0cb;
}

/* Responsive rules */
@media (max-width: 900px) {
  .hero {
	grid-template-columns: minmax(0, 1fr);
  }
  .hero-right {
	order: -1;
  }
}

@media (max-width: 720px) {
  .page { padding: 18px 12px 30px; }
  header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero { padding: 18px 16px 18px; }
  main { margin-top: 22px; gap: 18px; }
  .section { padding: 16px 14px 14px; }
  .feature-grid { grid-template-columns: minmax(0, 1fr); }
  .two-col { grid-template-columns: minmax(0, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; }
}

.logo-img{height:40px;width:40px;object-fit:cover;}
