
/* ==========================================================================
   GeekFriends Subpage Design System
   ========================================================================== */

.subpage-body {
    background:#fff;
}


.nav a.active {
    color:var(--purple);
}


.nav a.active::after {
    right:0;
}


/* HERO */

.company-hero {
    position:relative;

    overflow:hidden;

    padding:
        128px 0
        125px;

    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #faf8ff 54%,
            #f3effc 100%
        );
}


.company-hero::before {
    content:"";

    position:absolute;

    width:720px;
    height:720px;

    right:-310px;
    top:-420px;

    border:
        1px solid
        rgba(72,0,185,.10);

    border-radius:50%;
}


.company-hero-inner {
    display:grid;

    grid-template-columns:
        1.08fr .92fr;

    gap:100px;

    align-items:center;
}


.sub-kicker {
    margin:0 0 22px;

    color:var(--purple);

    font-size:12px;
    font-weight:850;

    letter-spacing:.17em;
}


.sub-kicker.light {
    color:#d1baff;
}


.company-hero h1 {
    margin:0;

    font-size:
        clamp(
            54px,
            5.4vw,
            78px
        );

    line-height:1.08;

    letter-spacing:-.055em;
}


.company-hero h1 span {
    color:var(--purple);
}


.company-lead {
    max-width:650px;

    margin:32px 0 0;

    color:var(--text);

    font-size:19px;
    line-height:1.85;

    word-break:keep-all;
}


/* HERO GRAPH */

.company-hero-graphic {
    position:relative;

    min-height:480px;

    display:grid;
    place-items:center;
}


.hero-tech-center {
    position:relative;

    z-index:4;

    width:130px;
    height:130px;

    display:grid;
    place-items:center;

    border-radius:38px;

    background:#fff;

    box-shadow:
        0 25px 70px
        rgba(72,0,185,.17);
}


.hero-tech-center img {
    width:78px;
}


.orbit {
    position:absolute;

    border:
        1px solid
        rgba(72,0,185,.16);

    border-radius:50%;
}


.orbit-1 {
    width:240px;
    height:240px;
}


.orbit-2 {
    width:350px;
    height:350px;
}


.orbit-3 {
    width:460px;
    height:460px;
}


.tech-node {
    position:absolute;
    z-index:5;

    min-width:104px;

    padding:13px 15px;

    border:
        1px solid
        rgba(72,0,185,.12);

    border-radius:14px;

    background:
        rgba(255,255,255,.92);

    box-shadow:
        0 15px 40px
        rgba(50,20,90,.08);
}


.tech-node strong {
    display:block;

    color:var(--purple);

    font-size:10px;
    letter-spacing:.12em;
}


.tech-node span {
    display:block;

    margin-top:4px;

    color:#74747c;

    font-size:11px;
}


.node-sensing {
    left:0;
    top:90px;
}


.node-connect {
    right:0;
    top:100px;
}


.node-data {
    left:18px;
    bottom:65px;
}


.node-control {
    right:10px;
    bottom:70px;
}


/* MANIFESTO */

.company-manifesto {
    padding:125px 0;

    border-bottom:
        1px solid
        var(--line);
}


.manifesto-grid {
    display:grid;

    grid-template-columns:
        .25fr
        1fr
        1fr;

    gap:60px;
}


.manifesto-number {
    color:#cac7d1;

    font-size:13px;
    font-weight:800;
}


.manifesto-title h2,
.sub-heading h2,
.process-heading h2,
.rnd-heading h2,
.company-cta h2 {
    margin:0;

    font-size:
        clamp(
            40px,
            4.3vw,
            58px
        );

    line-height:1.13;

    letter-spacing:-.045em;
}


.manifesto-title strong,
.sub-heading h2 span,
.process-heading h2 span,
.rnd-heading h2 span {
    color:var(--purple);
}


.manifesto-copy {
    max-width:500px;
}


.manifesto-copy p {
    margin:0 0 20px;

    color:var(--text);

    font-size:16px;
    line-height:1.85;

    word-break:keep-all;
}


/* CAPABILITY */

.company-capabilities {
    padding:125px 0;

    background:#f8f8fa;
}


.sub-heading {
    max-width:760px;

    margin-bottom:60px;
}


.capability-stage {
    display:grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    gap:12px;

    align-items:stretch;
}


.system-card {
    min-height:340px;

    padding:28px;

    border:
        1px solid
        #e8e7eb;

    border-radius:24px;

    background:#fff;
}


.system-index {
    margin-bottom:38px;

    color:var(--purple);

    font-size:10px;
    font-weight:850;
}


.system-symbol {
    width:56px;
    height:56px;

    display:grid;
    place-items:center;

    margin-bottom:28px;

    border-radius:17px;

    background:var(--purple-soft);
}


.system-symbol span {
    display:block;
}


.symbol-sensor span {
    width:12px;
    height:33px;

    border:
        3px solid
        var(--purple);

    border-radius:7px;
}


.symbol-connect span {
    width:31px;
    height:31px;

    border:
        3px solid
        var(--purple);

    border-radius:50%;

    box-shadow:
        0 0 0 7px
        rgba(72,0,185,.08);
}


.symbol-monitor span {
    width:34px;
    height:25px;

    border:
        3px solid
        var(--purple);

    border-radius:4px;
}


.symbol-decision span {
    width:33px;
    height:33px;

    border:
        3px solid
        var(--purple);

    transform:
        rotate(45deg);

    border-radius:5px;
}


.system-card h3 {
    margin:0 0 5px;

    color:var(--purple);

    font-size:11px;

    letter-spacing:.10em;

    text-transform:uppercase;
}


.system-card > strong {
    display:block;

    font-size:19px;
}


.system-card p {
    margin:17px 0 0;

    color:var(--text);

    font-size:14px;
    line-height:1.75;
}


.system-connector {
    display:grid;
    place-items:center;

    color:#bbb7c3;
}


/* BUSINESS */

.business-section {
    padding:125px 0;
}


.business-grid {
    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:18px;
}


.business-card {
    position:relative;

    min-height:365px;

    padding:36px;

    overflow:hidden;

    border:
        1px solid
        var(--line);

    border-radius:27px;

    background:#fff;
}


.business-purple {
    color:#fff;

    border-color:transparent;

    background:
        linear-gradient(
            145deg,
            #5200ce,
            #30007b
        );
}


.business-label {
    color:var(--purple);

    font-size:10px;
    font-weight:850;

    letter-spacing:.13em;
}


.business-purple .business-label {
    color:#d5c1ff;
}


.business-card h3 {
    margin:
        55px 0 14px;

    font-size:31px;

    letter-spacing:-.035em;
}


.business-card p {
    max-width:470px;

    margin:0;

    color:var(--text);

    font-size:15px;
    line-height:1.8;
}


.business-purple p {
    color:
        rgba(255,255,255,.7);
}


.business-card a {
    position:absolute;

    left:36px;
    bottom:32px;

    display:flex;

    gap:11px;

    color:var(--purple);

    font-size:13px;
    font-weight:800;
}


.business-purple a {
    color:#decfff;
}


/* FIELD PROCESS */

.field-process {
    padding:125px 0;

    background:
        #faf9fd;
}


.process-layout {
    display:grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap:90px;
}


.process-heading > p:not(.sub-kicker) {
    max-width:450px;

    margin:26px 0 0;

    color:var(--text);

    font-size:16px;
    line-height:1.8;
}


.process-list {
    border-top:
        1px solid
        #dfdde5;
}


.process-item {
    display:grid;

    grid-template-columns:
        58px 1fr;

    gap:20px;

    padding:
        25px 0;

    border-bottom:
        1px solid
        #dfdde5;
}


.process-item > span {
    color:var(--purple);

    font-size:11px;
    font-weight:850;
}


.process-item strong {
    font-size:17px;
}


.process-item p {
    margin:7px 0 0;

    color:var(--text);

    font-size:14px;
}


/* R&D */

.company-rnd {
    padding:125px 0;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #211233,
            #100817
        );
}


.rnd-layout {
    display:grid;

    grid-template-columns:
        .92fr 1.08fr;

    gap:90px;
}


.rnd-heading h2 span {
    color:#d1baff;
}


.rnd-content {
    max-width:610px;
}


.rnd-content > p {
    margin:
        0 0 20px;

    color:
        rgba(255,255,255,.68);

    font-size:16px;
    line-height:1.85;
}


.rnd-pipeline {
    display:flex;

    flex-wrap:wrap;
    align-items:center;

    gap:8px;

    margin-top:34px;
}


.rnd-pipeline span,
.rnd-pipeline strong {
    padding:
        8px 11px;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius:100px;

    font-size:11px;
}


.rnd-pipeline span {
    color:
        rgba(255,255,255,.7);
}


.rnd-pipeline b {
    color:
        rgba(255,255,255,.3);
}


.rnd-pipeline i {
    color:#cfb6ff;

    font-style:normal;
}


.rnd-pipeline strong {
    border-color:
        rgba(210,185,255,.3);

    color:#d9c6ff;

    background:
        rgba(72,0,185,.28);
}


/* CTA */

.company-cta {
    padding:105px 0;

    background:#4800b9;

    color:#fff;
}


.cta-box {
    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:90px;
}


.cta-right p {
    max-width:520px;

    margin:4px 0 0;

    color:
        rgba(255,255,255,.76);

    font-size:16px;
    line-height:1.8;
}


.company-cta-button {
    display:inline-flex;

    align-items:center;

    gap:18px;

    margin-top:28px;

    padding:
        14px 19px;

    border-radius:100px;

    background:#fff;

    color:var(--purple);

    font-size:13px;
    font-weight:800;
}


/* REVEAL */

.reveal {
    opacity:0;

    transform:
        translateY(18px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.reveal.visible {
    opacity:1;

    transform:
        translateY(0);
}


/* TABLET */

@media(max-width:1050px) {

    .company-hero-inner {
        gap:50px;
    }

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

    .system-connector {
        display:none;
    }

}


/* MOBILE */

@media(max-width:800px) {

    .company-hero {
        padding:
            80px 0 90px;
    }

    .company-hero-inner,
    .manifesto-grid,
    .process-layout,
    .rnd-layout,
    .cta-box {
        grid-template-columns:1fr;
    }

    .company-hero-inner {
        gap:50px;
    }

    .company-hero-graphic {
        min-height:390px;
    }

    .orbit-1 {
        width:200px;
        height:200px;
    }

    .orbit-2 {
        width:290px;
        height:290px;
    }

    .orbit-3 {
        width:370px;
        height:370px;
    }

    .manifesto-grid {
        gap:26px;
    }

    .manifesto-number {
        display:none;
    }

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

    .process-layout,
    .rnd-layout,
    .cta-box {
        gap:45px;
    }

}


@media(max-width:600px) {

    .company-hero h1 {
        font-size:
            clamp(
                41px,
                12vw,
                54px
            );
    }

    .company-lead {
        font-size:16px;
    }

    .company-manifesto,
    .company-capabilities,
    .business-section,
    .field-process,
    .company-rnd {
        padding:85px 0;
    }

    .manifesto-title h2,
    .sub-heading h2,
    .process-heading h2,
    .rnd-heading h2,
    .company-cta h2 {
        font-size:
            clamp(
                34px,
                9.5vw,
                43px
            );
    }

    .capability-stage {
        grid-template-columns:1fr;
    }

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

    .business-card {
        min-height:340px;

        padding:28px;
    }

    .business-card a {
        left:28px;
        bottom:27px;
    }

    .company-hero-graphic {
        min-height:350px;
    }

    .hero-tech-center {
        width:105px;
        height:105px;

        border-radius:30px;
    }

    .hero-tech-center img {
        width:65px;
    }

    .orbit-1 {
        width:170px;
        height:170px;
    }

    .orbit-2 {
        width:245px;
        height:245px;
    }

    .orbit-3 {
        width:320px;
        height:320px;
    }

    .tech-node {
        min-width:86px;

        padding:10px 11px;
    }

    .node-sensing {
        left:0;
        top:65px;
    }

    .node-connect {
        right:0;
        top:72px;
    }

    .node-data {
        left:7px;
        bottom:52px;
    }

    .node-control {
        right:3px;
        bottom:55px;
    }

    .company-cta {
        padding:80px 0;
    }

}


/* ACCESSIBILITY */

@media(prefers-reduced-motion:reduce) {

    .reveal {
        opacity:1;

        transform:none;

        transition:none;
    }

}



/* GF-WEB-COMPANY-1B START
   Desktop Korean heading wrap polish + semantic capability icons
   -------------------------------------------------------------------------- */

/*
 * Large desktop:
 * preserve the intentional <br> in the HTML,
 * but prevent the second semantic phrase from breaking again.
 */
@media (min-width: 1181px) {

    .company-hero-copy {
        min-width: 650px;
    }

    .company-hero h1 span {
        white-space: nowrap;
    }

    .manifesto-title {
        min-width: 520px;
    }

    .manifesto-title h2 strong {
        white-space: nowrap;
    }

}


/*
 * FROM SENSOR TO DECISION
 * Retain the existing outer symbol container and replace only
 * the abstract inner CSS shapes with purpose-specific SVG icons.
 */

.company-capabilities .system-symbol span {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;

    width: 44px !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background-color: transparent !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 44px 44px !important;

    box-shadow: none !important;

    transform: translate(-50%, -50%) !important;
}

.company-capabilities .system-symbol span::before,
.company-capabilities .system-symbol span::after {
    content: none !important;
    display: none !important;
}


/* 01 — agricultural sensing / soil probe */

.company-capabilities .symbol-sensor span {
    background-image:
        url("/images/icons/company-sensing.svg") !important;
}


/* 02 — wireless / data connectivity */

.company-capabilities .symbol-connect span {
    background-image:
        url("/images/icons/company-connectivity.svg") !important;
}


/* 03 — monitoring dashboard / data graph */

.company-capabilities .symbol-monitor span {
    background-image:
        url("/images/icons/company-monitoring.svg") !important;
}


/* 04 — data-based decision support */

.company-capabilities .symbol-decision span {
    background-image:
        url("/images/icons/company-decision.svg") !important;
}


/*
 * Tablet/mobile:
 * do not enforce desktop Korean no-wrap rules.
 * Existing responsive typography remains authoritative.
 */
@media (max-width: 1180px) {

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

    .company-hero h1 span,
    .manifesto-title h2 strong {
        white-space: normal;
    }

}

/* GF-WEB-COMPANY-1B END */


/* GF-WEB-COMPANY-1C START
   FROM SENSOR TO DECISION — semantic icon alignment
   -------------------------------------------------------------------------- */

/*
 * The SVG span is absolutely positioned.
 * Explicitly make the purple symbol tile its positioning context.
 */

.company-capabilities .system-symbol {
    position: relative !important;
    overflow: hidden;
}


/*
 * Center the semantic SVG exactly inside the symbol tile.
 */

.company-capabilities .system-symbol > span {
    position: absolute !important;

    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;

    width: 36px !important;
    height: 36px !important;

    margin: 0 !important;

    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;

    transform: translate(-50%, -50%) !important;
}


/*
 * Prevent remnants of the previous abstract CSS symbols.
 */

.company-capabilities .system-symbol > span::before,
.company-capabilities .system-symbol > span::after {
    content: none !important;
    display: none !important;
}

/* GF-WEB-COMPANY-1C END */


/* GF-WEB-COMPANY-1D START
   BUSINESS AREA — larger, clearer CTA targets
   -------------------------------------------------------------------------- */

/*
 * Increase visual prominence without changing the card structure.
 * Typography grows moderately while the actual click target is
 * approximately twice as large as the previous text-only link.
 */

.business-section .business-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 16px;

    border: 1px solid rgba(75, 0, 200, .16);
    border-radius: 999px;

    background: #f3efff;

    color: #4b00c8;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    transition:
        background-color .18s ease,
        border-color .18s ease,
        color .18s ease,
        transform .18s ease;
}


/* Purple SMART AGRICULTURE card */

.business-section .business-card.business-purple a {
    border-color: rgba(255, 255, 255, .28);

    background: rgba(255, 255, 255, .13);

    color: #ffffff;
}


/* Desktop pointer interaction */

@media (hover: hover) {

    .business-section .business-card a:hover {
        border-color: rgba(75, 0, 200, .28);

        background: #e9e0ff;

        transform: translateY(-1px);
    }

    .business-section .business-card.business-purple a:hover {
        border-color: rgba(255, 255, 255, .48);

        background: rgba(255, 255, 255, .21);

        color: #ffffff;
    }

}


/* Keyboard accessibility */

.business-section .business-card a:focus-visible {
    outline: 3px solid rgba(75, 0, 200, .24);
    outline-offset: 3px;
}

.business-section .business-card.business-purple a:focus-visible {
    outline-color: rgba(255, 255, 255, .55);
}


/*
 * Keep the touch target generous on tablets and phones.
 */

@media (max-width: 800px) {

    .business-section .business-card a {
        min-height: 46px;

        padding-left: 17px;
        padding-right: 17px;

        font-size: 15px;
    }

}

/* GF-WEB-COMPANY-1D END */


/* GF-WEB-COMPANY-1E-B START
   R&D pipeline readability + direct business contact
   -------------------------------------------------------------------------- */


/* R&D pipeline: 11px -> visually about 1.5x */

.company-rnd .rnd-pipeline {
    gap: 11px;
}

.company-rnd .rnd-pipeline span,
.company-rnd .rnd-pipeline strong {
    min-height: 40px;

    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;
}

.company-rnd .rnd-pipeline b,
.company-rnd .rnd-pipeline i {
    font-size: 20px;
    line-height: 1;
}


/* Direct business contact */

.company-contact-direct {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 24px;
}

.company-contact-item {
    min-height: 48px;

    padding: 8px 15px;

    display: inline-flex;
    flex-direction: column;
    justify-content: center;

    gap: 3px;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px;

    color: #fff;

    text-decoration: none;

    transition:
        background-color .18s ease,
        border-color .18s ease;
}

.company-contact-item span {
    color: rgba(255,255,255,.62);

    font-size: 12px;
    font-weight: 650;
}

.company-contact-item strong {
    color: #fff;

    font-size: 15px;
    font-weight: 750;
}

.company-contact-item:hover {
    border-color: rgba(255,255,255,.42);

    background: rgba(255,255,255,.08);
}


/* Main inquiry CTA */

.company-cta-button {
    min-height: 50px;

    padding: 0 22px;

    font-size: 16px;
    font-weight: 800;
}

.company-cta-button span {
    font-size: 18px;
}


/* Mobile */

@media (max-width: 800px) {

    .company-rnd .rnd-pipeline span,
    .company-rnd .rnd-pipeline strong {
        min-height: 36px;

        padding: 0 12px;

        font-size: 13px;
    }

    .company-rnd .rnd-pipeline b,
    .company-rnd .rnd-pipeline i {
        font-size: 17px;
    }

    .company-contact-direct {
        flex-direction: column;
        align-items: stretch;
    }

    .company-contact-item {
        width: 100%;
    }

    .company-cta-button {
        min-height: 50px;

        font-size: 15px;
    }

}

/* GF-WEB-COMPANY-1E-B END */


/* GF-WEB-COMPANY-1F START
   WORK WITH GEEKFRIENDS desktop Korean heading wrap
   -------------------------------------------------------------------------- */

@media (min-width: 1181px) {

    /*
     * Give the headline slightly more room than the contact column.
     * Existing explicit <br> remains the only desktop line break.
     */

    .company-cta .cta-box {
        grid-template-columns: 1.08fr .92fr;
        gap: 64px;
    }

    .company-cta h2 {
        white-space: nowrap;
    }

}


/*
 * Restore normal wrapping for tablet / mobile.
 */

@media (max-width: 1180px) {

    .company-cta h2 {
        white-space: normal;
    }

}

/* GF-WEB-COMPANY-1F END */

/* GF-WEB-HERO-2B START
   Company hero — brand / capability map differentiation
   ========================================================================== */


/*
 * Company page remains the conceptual capability map.
 * Increase only the information hierarchy and readability;
 * do not convert it into a service/dashboard visual.
 */

@media (min-width: 1181px) {

    .company-hero-inner {
        grid-template-columns:
            minmax(650px, 1.06fr)
            minmax(470px, .94fr);

        gap: 56px;
    }

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

    .company-lead {
        max-width: 650px;

        font-size: 18px;
        line-height: 1.85;

        word-break: keep-all;
    }

    .company-hero-graphic {
        min-height: 510px;
    }

    .hero-tech-center {
        width: 126px;
        height: 126px;

        border-radius: 34px;

        box-shadow:
            0 22px 55px
            rgba(72, 0, 185, .12);
    }

    .hero-tech-center img {
        width: 76px;
    }

    .tech-node {
        min-width: 112px;

        padding: 13px 16px;

        border-radius: 15px;

        box-shadow:
            0 12px 32px
            rgba(50, 35, 80, .07);
    }

    .tech-node strong {
        font-size: 12px;
        line-height: 1.2;

        letter-spacing: .08em;
    }

    .tech-node span {
        margin-top: 4px;

        font-size: 12px;
        line-height: 1.3;

        font-weight: 650;
    }

}


/*
 * Preserve existing responsive geometry while preventing
 * desktop-only typography from reducing mobile readability.
 */

@media (max-width: 1180px) {

    .company-lead {
        line-height: 1.8;
    }

}


/* GF-WEB-HERO-2B END */
